bandwidthThrottle\tokenBucket\storage\FileStorageTest::testGetMicrotimeFailsReading PHP Метод

testGetMicrotimeFailsReading() публичный Метод

Tests reading fails in getMicrotime().
    public function testGetMicrotimeFailsReading()
    {
        $this->getFunctionMock(__NAMESPACE__, "fread")->expects($this->atLeastOnce())->willReturn(false);
        vfsStream::setup('test');
        $storage = new FileStorage(vfsStream::url("test/data"));
        $storage->getMicrotime();
    }