コード例 #1
0
 public function setUp()
 {
     $this->collection = new People();
     foreach ($this->people as $person) {
         $object = $this->hydrate(new Person(), $person);
         $this->collection->addPerson($object);
     }
 }