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