Files
kaunter/tests/Feature/DenominasiTest.php
T
2021-08-12 23:41:54 +08:00

24 lines
426 B
PHP

<?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);
}
}