mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-api.git
synced 2026-08-19 04:24:01 +00:00
27 lines
544 B
PHP
27 lines
544 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use Tests\TestCase;
|
|
use Illuminate\Foundation\Testing\WithFaker;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
|
|
class RegisterTest extends TestCase
|
|
{
|
|
/**
|
|
* A basic test example.
|
|
*
|
|
* @return void
|
|
*/
|
|
// public function testRegister()
|
|
// {
|
|
// $response = $this->json('POST', '/api/register', ['name' => 'Sally']);
|
|
|
|
// $response
|
|
// ->assertStatus(201)
|
|
// ->assertJson([
|
|
// 'created' => true,
|
|
// ]);
|
|
// }
|
|
}
|