* */ namespace Combodo\iTop\Test\UnitTest\Application\Search; use Combodo\iTop\Application\Search\SearchForm; use Combodo\iTop\Test\UnitTest\ItopDataTestCase; use Exception; class SearchFormTest extends ItopDataTestCase { /** * @throws Exception */ protected function setUp() { parent::setUp(); require_once(APPROOT."sources/application/search/searchform.class.php"); } public function testGetFields() { $this->debug(SearchForm::GetFields('Contact')); } }