user info

This commit is contained in:
Nabeel Shahzad
2017-06-09 14:47:02 -05:00
parent 292727cf74
commit 8831f875ef
20 changed files with 560 additions and 43 deletions

26
tests/AircraftTest.php Normal file
View File

@@ -0,0 +1,26 @@
<?php
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
class AircraftTest extends TestCase
{
protected $repo;
public function setUp() {
parent::setUp();
$this->repo = $this->createRepository('AircraftRepository');
}
/**
* A basic test example.
*
* @return void
*/
public function testRepository()
{
print_r($this->repo->model());
}
}