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