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