PhpBench\Tests\Unit\Environment\Provider\GitTest::testIsNotApplicable PHP Метод

testIsNotApplicable() публичный Метод

It should return FALSE if the CWD is not a git repository.
public testIsNotApplicable ( )
    public function testIsNotApplicable()
    {
        chdir(sys_get_temp_dir());
        $result = $this->provider->isApplicable();
        $this->assertFalse($result);
    }