From 40238430bf4ae61d04df9f9a002b8fed12319dae Mon Sep 17 00:00:00 2001 From: Victor Saisa Lopez Date: Fri, 13 Jul 2012 15:27:55 -0400 Subject: [PATCH 1/2] BUG 0000 "PHPUNIT instantiation classXmlForm_Field_popupOptionTest.php" SOLVED - Instantiation of the class - Formatting file to PSR2 --- .../engine/classes/classXmlForm_Field_popupOptionTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/automated/workflow/engine/classes/classXmlForm_Field_popupOptionTest.php b/tests/automated/workflow/engine/classes/classXmlForm_Field_popupOptionTest.php index 1f05e1da2..ce17ff5c2 100644 --- a/tests/automated/workflow/engine/classes/classXmlForm_Field_popupOptionTest.php +++ b/tests/automated/workflow/engine/classes/classXmlForm_Field_popupOptionTest.php @@ -57,7 +57,7 @@ class classXmlForm_Field_popupOptionTest extends PHPUnit_Framework_TestCase public function testgetEvents() { $methods = get_class_methods($this->object); - $this->assertTrue( in_array('getEvents', $methods ), 'exists method getEvents' ); + $this->assertTrue(in_array('getEvents', $methods ), 'exists method getEvents' ); $r = new ReflectionMethod('XmlForm_Field_popupOption', 'getEvents'); $params = $r->getParameters(); } From da9d4ba2d4c59e079d4fcda78dc29717a147e432 Mon Sep 17 00:00:00 2001 From: Victor Saisa Lopez Date: Fri, 13 Jul 2012 15:40:34 -0400 Subject: [PATCH 2/2] BUG 0000 "PHPUNIT instantiation classXmlForm_Field_ToolBarTest.php" SOLVED - Instantiation of the class - Formatting file to PSR2 --- .../classXmlForm_Field_ToolBarTest.php | 27 +++++++++++-------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/tests/automated/workflow/engine/classes/classXmlForm_Field_ToolBarTest.php b/tests/automated/workflow/engine/classes/classXmlForm_Field_ToolBarTest.php index c2133f578..e3cfbd9ee 100644 --- a/tests/automated/workflow/engine/classes/classXmlForm_Field_ToolBarTest.php +++ b/tests/automated/workflow/engine/classes/classXmlForm_Field_ToolBarTest.php @@ -26,7 +26,10 @@ class classXmlForm_Field_ToolBarTest extends PHPUnit_Framework_TestCase */ protected function setUp() { - $this->object = new XmlForm_Field_ToolBar(); + $attributes = array("type" => "input"); + $xmlNode = new Xml_Node("node1", "type1", "value1", $attributes); + + $this->object = new XmlForm_Field_ToolBar($xmlNode, "en", null, null); } /** @@ -38,12 +41,13 @@ class classXmlForm_Field_ToolBarTest extends PHPUnit_Framework_TestCase } /** - * 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('XmlForm_Field_ToolBar'); $this->assertTrue( count($methods) == 25); + $methods = get_class_methods('XmlForm_Field_ToolBar'); + $this->assertTrue(count($methods) == 25); } /** @@ -68,7 +72,7 @@ class classXmlForm_Field_ToolBarTest extends PHPUnit_Framework_TestCase $this->assertTrue( $params[3]->getName() == 'owner'); $this->assertTrue( $params[3]->isArray() == false); $this->assertTrue( $params[3]->isOptional () == false); - } + } /** * @covers XmlForm_Field_ToolBar::render @@ -77,12 +81,13 @@ class classXmlForm_Field_ToolBarTest extends PHPUnit_Framework_TestCase public function testrender() { $methods = get_class_methods($this->object); - $this->assertTrue( in_array('render', $methods ), 'exists method render' ); + $this->assertTrue(in_array('render', $methods ), 'exists method render' ); $r = new ReflectionMethod('XmlForm_Field_ToolBar', 'render'); - $params = $r->getParameters(); - $this->assertTrue( $params[0]->getName() == 'value'); - $this->assertTrue( $params[0]->isArray() == false); - $this->assertTrue( $params[0]->isOptional () == false); - } - } + $params = $r->getParameters(); + $this->assertTrue($params[0]->getName() == 'value'); + $this->assertTrue($params[0]->isArray() == false); + $this->assertTrue($params[0]->isOptional() == false); + } +} +