Nwidart\Modules\tests\JsonTest::it_sets_a_path PHP 메소드

it_sets_a_path() 공개 메소드

public it_sets_a_path ( )
    public function it_sets_a_path()
    {
        $path = __DIR__ . '/stubs/module.json';
        $this->assertEquals($path, $this->json->getPath());
        $this->json->setPath('some/path.json');
        $this->assertEquals('some/path.json', $this->json->getPath());
    }