UserTest.php 339 B

1234567891011121314151617181920
  1. <?php
  2. namespace Tests\Unit;
  3. use Tests\TestCase;
  4. use Illuminate\Foundation\Testing\WithFaker;
  5. use Illuminate\Foundation\Testing\RefreshDatabase;
  6. class UserTest extends TestCase
  7. {
  8. /**
  9. * A basic unit test example.
  10. *
  11. * @return void
  12. */
  13. public function testExample()
  14. {
  15. $this->assertTrue(true);
  16. }
  17. }