staticList = new gvHidraList('staticList'); } /** * Tears down the fixture, for example, closes a network connection. * This method is called after a test is executed. * * @access protected */ protected function tearDown() { } /** * test que valida el constructor de la clase */ public function testConstruct() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @todo Implement testGetNombre(). */ public function testGetNombre() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @todo Implement testSetNombre(). */ public function testSetNombre() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @todo Implement testHayDependencia(). */ public function testHayDependencia() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @todo Implement testGetArrayDependencia(). */ public function testGetArrayDependencia() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @todo Implement testSetDependencia(). */ public function testSetDependencia() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @todo Implement testGetConsulta(). */ public function testGetConsulta() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @todo Implement testSetConsulta(). */ public function testSetConsulta() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @todo Implement testGetOrden(). */ public function testGetOrden() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @todo Implement testSetOrden(). */ public function testSetOrden() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @todo Implement testHayDSN(). */ public function testHayDSN() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @todo Implement testGetDSN(). */ public function testGetDSN() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @todo Implement testSetDSN(). */ public function testSetDSN() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @todo Implement testGetSeleccionado(). */ public function testGetSeleccionado() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @todo Implement testSetSeleccionado(). */ public function testSetSeleccionado() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @todo Implement testMarcarSeleccionado(). */ public function testMarcarSeleccionado() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @todo Implement testAddOpcion(). */ public function testAddOpcion() { //Add option to list $value = 'val'; $description = 'des'; $this->staticList->addOpcion($value,$description); $resList = $this->staticList->construyeLista(); $expectedList = array(array("valor"=>$value, "descripcion"=>$description)); $this->assertEquals($resList['lista'],$expectedList,'no aņade la opcion de las listas'); } /** * @todo Implement test_procesarDefinicion(). */ public function test_procesarDefinicion() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @todo Implement testConstruyeLista(). */ public function testConstruyeLista() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } } ?>