Eğer aşağıdaki gibi bir sayım fonksiyonunu test olsaydı, bu testlerin her biri için bir test işlevi olan vs bir işlev fonksiyon için birden şeyleri test etmek için 'doğru' veya 'yanlış' olarak kabul edilir?
function testGetKeywordCount()
{
$tester = $this->getDatabaseTester($this->CompleteDataFile);
$tester->onSetUp();
$KeywordID = 0;
$this->setExpectedException('InvalidArgumentException');
$this->keyword->getKeywordCount($KeywordID,'Active');
$KeywordID = 1;
$this->setExpectedException('InvalidArgumentException');
$this->keyword->getKeywordCount($KeywordID,'InvalidStatus');
$this->assertEquals(1, $this->keyword->getKeywordCount($KeywordID,'Active'));
$tester->onTearDown();
}