Amranidev\ScaffoldInterface\Tests\ScaffoldTest::testScaffold PHP Method

testScaffold() public method

test created files.
public testScaffold ( )
    public function testScaffold()
    {
        $this->assertFileExists(base_path() . '/resources/views/article/index.blade.php');
        $this->assertFileExists(base_path() . '/resources/views/article/create.blade.php');
        $this->assertFileExists(base_path() . '/resources/views/article/edit.blade.php');
        $this->assertFileExists(base_path() . '/resources/views/article/show.blade.php');
        $this->assertFileExists(base_path() . '/app/Article.php');
        $this->assertFileExists(base_path() . '/app/ArticleController.php');
        $this->assertFileExists(base_path() . '/app/routes.php');
    }