assertEquals('default', $node->name); $this->assertEquals(Node::OBJECT, $node->type); $this->assertEquals(false, $node->is_group); } /** * Test for PMA_NodeFactory::getInstance * * @return void */ public function testDefaultContainer() { $node = PMA_NodeFactory::getInstance('Node', 'default', Node::CONTAINER); $this->assertEquals('default', $node->name); $this->assertEquals(Node::CONTAINER, $node->type); $this->assertEquals(false, $node->is_group); } /** * Test for PMA_NodeFactory::getInstance * * @return void */ public function testGroupContainer() { $node = PMA_NodeFactory::getInstance( 'Node', 'default', Node::CONTAINER, true ); $this->assertEquals('default', $node->name); $this->assertEquals(Node::CONTAINER, $node->type); $this->assertEquals(true, $node->is_group); } /** * Test for PMA_NodeFactory::getInstance * * @return void */ public function testFileError() { $this->setExpectedException('PHPUnit_Framework_Error'); PMA_NodeFactory::getInstance('Node_DoesNotExist'); } /** * Test for PMA_NodeFactory::getInstance * * @return void */ public function testClassNameError() { $this->setExpectedException('PHPUnit_Framework_Error'); PMA_NodeFactory::getInstance('Invalid'); } } ?>