phpldapadmin/tests/Feature/ExampleTest.php

22 lines
380 B
PHP
Raw Normal View History

2020-08-23 02:30:18 +00:00
<?php
namespace Tests\Feature;
2023-01-27 11:16:25 +00:00
// use Illuminate\Foundation\Testing\RefreshDatabase;
2020-08-23 02:30:18 +00:00
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
2023-01-27 11:16:25 +00:00
public function test_the_application_returns_a_successful_response()
2020-08-23 02:30:18 +00:00
{
2023-01-27 11:16:25 +00:00
$response = $this->get('/');
2020-08-23 02:30:18 +00:00
$response->assertStatus(200);
}
}