示例#1
0
文件: Setup.php 项目: devrtips/listr
 public function setUp()
 {
     Listr::setConfig($this->blogConfig);
     $this->filters = Listr::getFilters('blog');
 }
示例#2
0
 /**
  * Filter cannot be created without label
  */
 public function testFilterCannotBeCreatedWithoutLabel()
 {
     $this->setExpectedException('Exception', "Label needed for filter 'content'.");
     Listr::setConfig($this->configWithFilterWithoutLabel);
 }