perubahan sikit

This commit is contained in:
MUHD HAFIFIE
2021-08-12 23:41:54 +08:00
parent 29b18c19cf
commit c637ddd318
15 changed files with 222 additions and 156 deletions
+23
View File
@@ -0,0 +1,23 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Foundation\Testing\WithFaker;
use Tests\TestCase;
class DenominasiTest extends TestCase
{
/**
* A basic feature test example.
*
* @return void
*/
public function testExample()
{
$this->actingAs($user);
$response = $this->get('/');
$response->assertStatus(200);
}
}