visuddhinanda 2 years ago
parent
commit
40b2b088b5
1 changed files with 23 additions and 0 deletions
  1. 23 0
      tests/Feature/SentHistoryTest.php

+ 23 - 0
tests/Feature/SentHistoryTest.php

@@ -0,0 +1,23 @@
+<?php
+
+namespace Tests\Feature;
+
+use Illuminate\Foundation\Testing\RefreshDatabase;
+use Illuminate\Foundation\Testing\WithFaker;
+use Tests\TestCase;
+
+class SentHistoryTest extends TestCase
+{
+    /**
+     * A basic feature test example.
+     *
+     * @return void
+     */
+    public function test_index()
+    {
+
+        $response = $this->get('/api/v2/sent_history?view=sentence&id=998bed0c-883e-4384-8982-ef0bfa601e58');
+
+        $response->assertStatus(200);
+    }
+}