Example #1
0
 /**
  * @covers \JetBag\Poirot::__construct
  * @covers \JetBag\Poirot::container
  */
 public function testConstructorSuccess()
 {
     $input = array();
     $poirot = new Poirot($input);
     $this->assertSame($input, $poirot->container());
     $input = new ArrayObject();
     $poirot = new Poirot($input);
     $this->assertSame($input, $poirot->container());
 }