ScriptFUSIONTest\Integration\Porter\Connector\CachingConnectorTest::testCacheBypassedForDifferentOptions PHP Méthode

testCacheBypassedForDifferentOptions() public méthode

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