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