Example #1
0
 /**
  * @covers \spriebsch\PHPca\Pattern\Pattern::isEmpty
  */
 public function testIsEmptyReturnsFalseForNonEmptyPattern()
 {
     $pattern = new Pattern();
     $pattern->add(new Pattern());
     $this->assertFalse($pattern->isEmpty());
 }