missing assert

This commit is contained in:
Jacson Passold 2018-06-04 16:15:37 -03:00
parent da2e7a2b4d
commit a08fdf0693
1 changed files with 2 additions and 1 deletions

View File

@ -110,7 +110,8 @@ class TAINACAN_REST_Export_Controller extends TAINACAN_UnitApiTestCase {
$response = $this->server->dispatch($request);
$this->assertEquals(200, $response->get_status());
$data = $response->get_data();
print_r($data);
$this->assertInstanceOf('SimpleXMLElement', @simplexml_load_string($data));
}
}