Inheritance: extends Orchestra\Testbench\TestCase
 public function setUp()
 {
     parent::setUp();
     // Create the users table for testing
     Schema::create('users', function ($table) {
         $table->increments('id');
         $table->string('name');
         $table->string('email')->unique();
         $table->string('password', 60);
         $table->rememberToken();
         $table->timestamps();
     });
 }