<?php

class ExampleTest extends TestCase
{
    /**
     * A basic test example.
     *
     * @return void
     */
    public function testExample()
    {
       $response = $this->call('GET', 'api/v1/user/');
       $this->assertEquals(200, $response->status());
    }
}
