コード例 #1
0
ファイル: SetTest.php プロジェクト: dazarobbo/cola
 public function testEach()
 {
     $set = new Set();
     $set->add('hello', 'world', 100, function () {
     }, array(3, 2, 1));
     $iterations = 0;
     $set->each(function ($item) use(&$iterations) {
         ++$iterations;
     });
     $this->assertEquals(5, $iterations);
 }