Adding dingo api as requirement.

This commit is contained in:
2017-12-13 15:20:57 +07:00
parent e1eef8de37
commit ee528fcc59
7 changed files with 987 additions and 370 deletions

View File

@@ -0,0 +1,21 @@
<?php
namespace Tests\Feature;
use Tests\TestCase;
use Illuminate\Foundation\Testing\RefreshDatabase;
class ViewingQuestionnaireTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testICanViewListOfQuestionnaire()
{
$response = $this->get('/v0/questionnaire');
$response->assertStatus(200);
}
}