bandwidthThrottle\tokenBucket\storage\IPCStorageTest::testfailRemovingSemaphore PHP Method

testfailRemovingSemaphore() public method

Tests removing semaphore fails.
    public function testfailRemovingSemaphore()
    {
        $key = ftok(__FILE__, "a");
        $storage = new IPCStorage($key);
        sem_remove(sem_get($key));
        @$storage->remove();
    }