Gentics Portal.Node PHP API
 All Classes Namespaces Functions Variables Pages
SearchModuleTest.php
1 <?php
2 
3 class SearchModuleTest extends CTestCase
4 {
5  public function testGetLandingPage()
6  {
7  $this->assertNotEmpty(Yii::app()->getModule('search')->getLandingPage('en'));
8 
9  }
10 
11  public function testGetApi()
12  {
13  $this->assertNotNull(Yii::app()->getModule('search')->getApi());
14  }
15 
16 }