Example #1
0
 /** @covers Brickoo\Component\Common\Registry::toArray */
 public function testGetRegistrations()
 {
     $this->assertInternalType("array", $this->registry->toArray());
     $this->registry->register("name", "john");
     $this->assertArrayHasKey("name", $this->registry->toArray());
 }