Cascade\Tests\Config\Loader\FileLoader\JsonTest::testSupportsWithJsonString PHP 메소드

testSupportsWithJsonString() 공개 메소드

Test loading a JSON string
    public function testSupportsWithJsonString()
    {
        $this->jsonLoader->expects($this->once())->method('isFile')->willReturn(false);
        $json = Fixtures::getSampleJsonString();
        $this->assertTrue($this->jsonLoader->supports($json));
    }