andTrue() 공개 메소드

public andTrue ( )
예제 #1
0
 public function testAndTrueIgnored()
 {
     $conjunction1 = new AndX(array($notNull = new Same('10')));
     $conjunction2 = $conjunction1->andTrue();
     $this->assertSame($conjunction1, $conjunction2);
 }