Skip to content

Commit

Permalink
Old Laravel 5.2 version
Browse files Browse the repository at this point in the history
  • Loading branch information
mikimaine committed Aug 30, 2017
1 parent a442196 commit 02268ee
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions tests/UserTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php

use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;

class UserTest extends TestCase
{
/**
* A basic functional test example.
*
* @return void
*/
public function testIfUserCanBeFetch()
{
$user = new User();

$this->assertExsist($user->getAll());
}
}

0 comments on commit 02268ee

Please sign in to comment.