Ejemplo n.º 1
0
 /**
  * @test
  */
 public function shouldBeAbleToOverrideDefaultCollections()
 {
     $season = new Season();
     $class = new \stdClass();
     $season->setCredits($class);
     $this->assertInstanceOf('stdClass', $season->getCredits());
 }