ScriptFUSIONTest\Integration\Porter\Connector\CachingConnectorTest::testCacheDisabled PHP Method

testCacheDisabled() public method

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));
    }