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

testCacheUsedForDifferentOptionsInstance() public method

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