fixing all automated test units
This commit is contained in:
@@ -38,13 +38,14 @@ class classInvalidIndexSearchTextExceptionTest extends PHPUnit_Framework_TestCas
|
||||
}
|
||||
|
||||
/**
|
||||
* This is the default method to test, if the class still having
|
||||
* This is the default method to test, if the class still having
|
||||
* the same number of methods.
|
||||
*/
|
||||
public function testNumberOfMethodsInThisClass()
|
||||
{
|
||||
$methods = get_class_methods('InvalidIndexSearchTextException');
|
||||
$this->assertTrue( count($methods) == 8);
|
||||
$class = new ReflectionClass('ApplicationWithoutDelegationRecordsException');
|
||||
$methods = $class->getMethods();
|
||||
$this->assertTrue( count($methods) == 10);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user