BrowscapTest\Generator\BuildGeneratorTest::testConstructFailsWithoutTheSecondParameter PHP Метод

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

tests failing the build without build dir
    public function testConstructFailsWithoutTheSecondParameter()
    {
        $this->setExpectedException('\\Exception', 'You must specify a build folder');
        new BuildGenerator('.', null);
    }