bandwidthThrottle\tokenBucket\storage\FileStorageTest::testGetMicrotimeFailsSeeking PHP 메소드

testGetMicrotimeFailsSeeking() 공개 메소드

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