Example #1
0
 public function testContains()
 {
     $one = new StringLiteral('one');
     $ten = new StringLiteral('ten');
     $this->assertTrue($this->collection->contains($one));
     $this->assertFalse($this->collection->contains($ten));
 }