BrowscapTest\Generator\BuildGeneratorTest::testConstructFailsWithoutParameters PHP Method

testConstructFailsWithoutParameters() public method

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