コード例 #1
0
 public function testGetPimpleReturnsComponentPimpleInstance()
 {
     $testPimple = new \Pimple();
     $this->component = new \DewdropTest\Admin\Animals\Component($testPimple);
     $this->assertSame($testPimple, $this->component->getPimple());
     $testBPimple = new \Pimple();
     $this->component = new \DewdropTest\Admin\Animals\Component($testBPimple);
     $this->assertNotSame($testPimple, $this->component->getPimple());
 }