andTrue() public method

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