Example #1
0
 /** @covers Brickoo\Component\Common\Registry::countLocked */
 public function testCountLocked()
 {
     $this->registry->register("name", "john");
     $this->registry->lock("name");
     $this->assertEquals(1, $this->registry->countLocked());
 }