ScriptFUSIONTest\Integration\Porter\Connector\CachingConnectorTest::testCacheDisabled PHP 메소드

testCacheDisabled() 공개 메소드

public testCacheDisabled ( )
    public function testCacheDisabled()
    {
        $this->connector->disableCache();
        self::assertSame('foo', $this->connector->fetch('baz', $this->options));
        self::assertSame('bar', $this->connector->fetch('baz', $this->options));
    }