SentHistoryTest.php 468 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace Tests\Feature;
  3. use Illuminate\Foundation\Testing\RefreshDatabase;
  4. use Illuminate\Foundation\Testing\WithFaker;
  5. use Tests\TestCase;
  6. class SentHistoryTest extends TestCase
  7. {
  8. /**
  9. * A basic feature test example.
  10. *
  11. * @return void
  12. */
  13. public function test_index()
  14. {
  15. $response = $this->get('/api/v2/sent_history?view=sentence&id=998bed0c-883e-4384-8982-ef0bfa601e58');
  16. $response->assertStatus(200);
  17. }
  18. }