fixing all automated test units

This commit is contained in:
Fernando
2012-07-14 02:45:21 -04:00
parent 5f075bbaa8
commit a6250f3840
4 changed files with 9 additions and 9 deletions

View File

@@ -44,8 +44,8 @@ class classInvalidIndexSearchTextExceptionTest extends PHPUnit_Framework_TestCas
public function testNumberOfMethodsInThisClass()
{
$class = new ReflectionClass('ApplicationWithoutDelegationRecordsException');
$methods = $class->getMethods();
$this->assertTrue( count($methods) == 10);
$methods = $class->getMethods(ReflectionMethod::IS_PUBLIC);
$this->assertTrue( count($methods) == 9);
}
/**