WordIndexTest.php 429 B

12345678910111213141516171819202122
  1. <?php
  2. namespace Tests\Feature;
  3. use Illuminate\Foundation\Testing\RefreshDatabase;
  4. use Illuminate\Foundation\Testing\WithFaker;
  5. use Tests\TestCase;
  6. class WordIndexTest 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/pali-word-index?view=key&key=a');
  16. $response->assertStatus(200);
  17. }
  18. }