コード例 #1
0
ファイル: PopulatorTest.php プロジェクト: aleguisf/fvdev1
 public function testCanSwapOutValues()
 {
     $populator = new Populator(array('foo', 'bar'));
     $populator->replace(array('bar', 'foo'));
     $this->assertEquals(array('bar', 'foo'), $populator->all());
 }