1234567891011121314151617181920 |
- <?php
- namespace Tests\Unit;
- use Tests\TestCase;
- use Illuminate\Foundation\Testing\WithFaker;
- use Illuminate\Foundation\Testing\RefreshDatabase;
- class UserTest extends TestCase
- {
- /**
- * A basic unit test example.
- *
- * @return void
- */
- public function testExample()
- {
- $this->assertTrue(true);
- }
- }
|