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

testCacheBypassedForDifferentOptions() 공개 메소드

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