コード例 #1
0
ファイル: test-collection.php プロジェクト: iCaspar/WPDC_Core
 public function test_shift_returns_and_removes_first_item_in_collection()
 {
     $c = new Collection(array('foo', 'bar'));
     $this->assertEquals('foo', $c->shift());
     $this->assertEquals('bar', $c->first());
 }