示例#1
0
 /**
  * @testdox ignoreTags() throws an exception if its argument is not a boolean
  * @expectedException InvalidArgumentException
  * @expectedExceptionMessage ignoreTags() expects a boolean
  */
 public function testIgnoreTagsInvalid()
 {
     $ruleset = new Ruleset();
     $ruleset->ignoreTags('foo');
 }