fixing phpcs in build.xml and removing the incomplete tag for all phpunits

This commit is contained in:
Fernando Ontiveros
2012-07-12 22:34:02 -04:00
parent b4641ceaae
commit 259263bcc8
171 changed files with 341 additions and 3696 deletions

View File

@@ -10,7 +10,7 @@ require_once PATH_TRUNK . 'gulliver/thirdparty/pear/PEAR.php';
require_once PATH_TRUNK . 'workflow/engine/classes/class.AppSolr.php';
/**
* Generated by ProcessMaker Test Unit Generator on 2012-07-12 at 20:28:32.
* Generated by ProcessMaker Test Unit Generator on 2012-07-12 at 22:32:25.
*/
class classInvalidIndexSearchTextExceptionTest extends PHPUnit_Framework_TestCase
@@ -43,7 +43,7 @@ class classInvalidIndexSearchTextExceptionTest extends PHPUnit_Framework_TestCas
*/
public function testNumberOfMethodsInThisClass()
{
$this->assertTrue( count($methods) == 8);
$methods = get_class_methods('InvalidIndexSearchTextException'); $this->assertTrue( count($methods) == 8);
}
/**
@@ -63,8 +63,6 @@ class classInvalidIndexSearchTextExceptionTest extends PHPUnit_Framework_TestCas
$this->assertTrue( $params[1]->isArray() == false);
$this->assertTrue( $params[1]->isOptional () == true);
$this->assertTrue( $params[1]->getDefaultValue() == '0');
$this->markTestIncomplete('This test has not been implemented yet.');
}
/**
@@ -77,8 +75,6 @@ class classInvalidIndexSearchTextExceptionTest extends PHPUnit_Framework_TestCas
$this->assertTrue( in_array('__toString', $methods ), 'exists method __toString' );
$r = new ReflectionMethod('InvalidIndexSearchTextException', '__toString');
$params = $r->getParameters();
$this->markTestIncomplete('This test has not been implemented yet.');
}
}