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

testSetMicrotimeFailsWriting() 공개 메소드

Tests writings fails in setMicrotime().
    public function testSetMicrotimeFailsWriting()
    {
        $this->getFunctionMock(__NAMESPACE__, "fwrite")->expects($this->atLeastOnce())->willReturn(false);
        vfsStream::setup('test');
        $storage = new FileStorage(vfsStream::url("test/data"));
        $storage->setMicrotime(1.1234);
    }