예제 #1
0
파일: SetTest.php 프로젝트: dazarobbo/cola
 public function testContains()
 {
     $set = new Set();
     $set->add('hello', 'world', 100, function () {
     }, array(3, 2, 1));
     $this->assertTrue($set->contains('world'));
     $this->assertFalse($set->contains('100'));
 }