Branch Coverage
- A program should jump to all possible destinations
if ($x)
{
print "a";
}
else
{
print "b";
}
- $x must be true on one occassion and false on another
- 100% branch coverage implies 100% statement coverage


