Inheritance: extends Orchestra\Testbench\TestCase
 public function setUp()
 {
     parent::setUp();
     $this->request = app()->make('Request')->setRequest(['TableName' => 'Article', 'template' => 'bootstrap', 'opt0' => 'String', 'attr0' => 'title', 'opt1' => 'LongText', 'attr1' => 'body', 'attr2' => 'String', 'opt2' => 'author']);
     $this->scaffold = app()->make('Scaffold');
     $this->scaffold->migration()->model()->controller()->route()->views();
 }