Example #1
0
 /**
  * @group Slow
  * @slowExecutionTime 0.07465 ms
  * @covers Wikia\Search\Config::getTestProfile
  * @covers Wikia\Search\Config::initiateTestProfile
  */
 public function testGetTestProfileNonexistentTestGroup()
 {
     $config = new Config();
     $config->setBoostGroup('THIS_AINT_NO_TEST_GROUP');
     $this->assertInstanceOf('Wikia\\Search\\TestProfile\\Base', $config->getTestProfile(), 'A non-existent test group should back off to base');
 }