예제 #1
0
파일: SetTest.php 프로젝트: dazarobbo/cola
 public function testSort()
 {
     $set = new Set();
     $set->add('Carol', 'Alice', 'Bob');
     $exptected = array('Alice', 'Bob', 'Carol');
     $this->assertTrue($set->sort()->toArray() === $exptected);
 }