| Prev | Code Coverage - Tales From the Trenches | Next |
There are classes of errors which branch coverage cannot detect:
$h = 0;
if ($x)
{
$h = { a => 1 };
}
if ($y)
{
print $h->{a};
}
continued...
| Slide 11 | YAPC::Europe::2003 | Copyright © 2003 Paul Johnson |