initial commit
This commit is contained in:
@@ -0,0 +1,111 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Feature\Auth;
|
||||
|
||||
use App\Models\User;
|
||||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
use Illuminate\Support\Facades\Session;
|
||||
use Tests\TestCase;
|
||||
|
||||
class AuthenticationTest extends TestCase
|
||||
{
|
||||
use RefreshDatabase;
|
||||
|
||||
public function test_login_screen_can_be_rendered(): void
|
||||
{
|
||||
$response = $this->get('/login');
|
||||
$response->assertStatus(200);
|
||||
}
|
||||
|
||||
public function test_users_can_authenticate_with_valid_credentials(): void
|
||||
{
|
||||
$user = User::factory()->create([
|
||||
'password' => bcrypt($password = 'password'),
|
||||
]);
|
||||
|
||||
$response = $this->post('/login', [
|
||||
'email' => $user->email,
|
||||
'password' => $password,
|
||||
]);
|
||||
|
||||
$this->assertAuthenticatedAs($user);
|
||||
|
||||
// Assert redirect based on user role
|
||||
if ($user->user_role === 'admin') {
|
||||
$response->assertRedirect(route('admin-dashboard', [], false));
|
||||
} elseif ($user->user_role === 'doctor') {
|
||||
//$response->assertRedirect(route('doctor-dashboard', [], false));
|
||||
} else {
|
||||
$response->assertRedirect(route('user-dashboard', [], false));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public function test_users_can_not_authenticate_with_invalid_password(): void
|
||||
{
|
||||
$user = User::factory()->create();
|
||||
|
||||
$response = $this->post('/login', [
|
||||
'email' => $user->email,
|
||||
'password' => 'wrong-password',
|
||||
]);
|
||||
|
||||
$response->assertSessionHasErrors();
|
||||
$this->assertGuest();
|
||||
}
|
||||
|
||||
public function test_users_can_logout(): void
|
||||
{
|
||||
$user = User::factory()->create();
|
||||
|
||||
$response = $this->actingAs($user)->post('/logout');
|
||||
|
||||
$response->assertRedirect('/');
|
||||
$this->assertGuest();
|
||||
}
|
||||
|
||||
public function test_user_can_redirect_to_user_dashboard(): void
|
||||
{
|
||||
$user = User::factory()->create(['user_role' => 'user']);
|
||||
$userResponse = $this->post('/login', [
|
||||
'email' => $user->email,
|
||||
'password' => 'password',
|
||||
]);
|
||||
$userResponse->assertRedirect(route('user-dashboard'));
|
||||
}
|
||||
|
||||
public function test_admin_can_redirect_to_admin_dashboard(): void
|
||||
{
|
||||
$admin = User::factory()->create(['user_role' => 'admin']);
|
||||
$adminResponse = $this->post('/login', [
|
||||
'email' => $admin->email,
|
||||
'password' => 'password', // Assuming password is 'password' for all users
|
||||
]);
|
||||
|
||||
$adminResponse->assertRedirect(route('admin-dashboard'));
|
||||
}
|
||||
|
||||
// public function test_doctor_can_redirect_to_doctor_dashboard(): void
|
||||
// {
|
||||
// $doctor = User::factory()->create(['user_role' => 'doctor']);
|
||||
// $doctorResponse = $this->post('/login', [
|
||||
// 'email' => $doctor->email,
|
||||
// 'password' => 'password',
|
||||
// ]);
|
||||
|
||||
// $doctorResponse->assertRedirect(route('doctor-dashboard'));
|
||||
// }
|
||||
|
||||
public function test_logout_destroys_authenticated_session(): void
|
||||
{
|
||||
$user = User::factory()->create();
|
||||
|
||||
$this->actingAs($user)->post('/logout');
|
||||
|
||||
$this->assertGuest();
|
||||
$this->assertFalse(Auth::check());
|
||||
$this->assertNull(Auth::user());
|
||||
$this->assertTrue(Session::has('_token'));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,123 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Feature\Auth;
|
||||
|
||||
use App\Models\User;
|
||||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||
use Illuminate\Foundation\Testing\WithFaker;
|
||||
use Illuminate\Http\Response;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
use Tests\TestCase;
|
||||
|
||||
class RegistrationTest extends TestCase
|
||||
{
|
||||
use RefreshDatabase;
|
||||
use WithFaker;
|
||||
|
||||
public function test_registration_screen_can_be_rendered(): void
|
||||
{
|
||||
$response = $this->get('/register');
|
||||
|
||||
$response->assertStatus(200);
|
||||
}
|
||||
|
||||
public function test_new_user_can_register()
|
||||
{
|
||||
$userData = [
|
||||
'username' => $this->faker->userName,
|
||||
'password' => 'password123',
|
||||
'password_confirmation' => 'password123',
|
||||
'name' => $this->faker->name,
|
||||
'email' => $this->faker->unique()->safeEmail,
|
||||
'telepon' => $this->faker->phoneNumber,
|
||||
'alamat' => $this->faker->address,
|
||||
'gender' => $this->faker->randomElement(['male', 'female']),
|
||||
];
|
||||
|
||||
$response = $this->post('/register', $userData);
|
||||
|
||||
$response->assertStatus(302); // Check if redirected after successful registration
|
||||
$response->assertRedirect(route('login'));
|
||||
|
||||
$this->assertDatabaseHas('users', [
|
||||
'username' => $userData['username'],
|
||||
'email' => strtolower($userData['email']),
|
||||
'telepon' => $userData['telepon'],
|
||||
'alamat' => $userData['alamat'],
|
||||
'gender' => $userData['gender'],
|
||||
]);
|
||||
|
||||
// Assert that the password is hashed
|
||||
$user = User::where('email', $userData['email'])->first();
|
||||
$this->assertTrue(Hash::check($userData['password'], $user->password));
|
||||
}
|
||||
|
||||
public function test_registration_validation_fails_if_missing_required_fields()
|
||||
{
|
||||
$response = $this->post('/register', []);
|
||||
|
||||
$response->assertSessionHasErrors(['username', 'password', 'name', 'email', 'telepon', 'gender']);
|
||||
}
|
||||
|
||||
public function test_registration_validation_fails_if_email_invalid()
|
||||
{
|
||||
$userData = [
|
||||
'username' => $this->faker->userName,
|
||||
'password' => 'password123',
|
||||
'password_confirmation' => 'password123',
|
||||
'name' => $this->faker->name,
|
||||
'email' => 'invalid_email',
|
||||
'telepon' => $this->faker->phoneNumber,
|
||||
'alamat' => $this->faker->address,
|
||||
'gender' => $this->faker->randomElement(['male', 'female']),
|
||||
];
|
||||
|
||||
$response = $this->post('/register', $userData);
|
||||
|
||||
$response->assertSessionHasErrors(['email']);
|
||||
}
|
||||
|
||||
public function test_registration_fails_if_duplicate_username()
|
||||
{
|
||||
$existingUser = User::factory()->create();
|
||||
|
||||
$userData = [
|
||||
'username' => $existingUser->username,
|
||||
'password' => 'password123',
|
||||
'password_confirmation' => 'password123',
|
||||
'name' => $this->faker->name,
|
||||
'email' => $this->faker->unique()->safeEmail,
|
||||
'telepon' => $this->faker->phoneNumber,
|
||||
'alamat' => $this->faker->address,
|
||||
'gender' => $this->faker->randomElement(['male', 'female']),
|
||||
];
|
||||
|
||||
$response = $this->post('/register', $userData);
|
||||
|
||||
$response->assertSessionHasErrors(['username']);
|
||||
}
|
||||
|
||||
public function test_registration_fails_if_duplicate_email()
|
||||
{
|
||||
$existingUser = User::factory()->create();
|
||||
|
||||
$userData = [
|
||||
'username' => $this->faker->userName,
|
||||
'password' => 'password123',
|
||||
'password_confirmation' => 'password123',
|
||||
'name' => $this->faker->name,
|
||||
'email' => $existingUser->email,
|
||||
'telepon' => $this->faker->phoneNumber,
|
||||
'alamat' => $this->faker->address,
|
||||
'gender' => $this->faker->randomElement(['male', 'female']),
|
||||
];
|
||||
|
||||
$response = $this->post('/register', $userData);
|
||||
|
||||
$response->assertSessionHasErrors(['email']);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,316 @@
|
||||
[24-Jun-2024 20:56:34 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[24-Jun-2024 20:56:37 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[27-Jun-2024 14:01:52 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[27-Jun-2024 14:03:00 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[10-Jul-2024 10:20:23 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[14-Jul-2024 19:35:39 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[15-Jul-2024 07:49:33 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[17-Jul-2024 14:31:00 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[03-Aug-2024 01:36:16 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[03-Aug-2024 01:36:16 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[03-Aug-2024 02:04:59 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[03-Aug-2024 02:05:00 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[26-Aug-2024 16:18:38 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[26-Aug-2024 21:28:09 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[04-Oct-2024 05:59:22 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[04-Oct-2024 11:01:08 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[07-Nov-2024 05:09:36 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[07-Nov-2024 08:15:57 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[22-Nov-2024 23:17:13 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[22-Nov-2024 23:17:14 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[06-Dec-2024 22:34:36 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[06-Dec-2024 23:55:14 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[01-Jan-2025 22:49:07 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[09-Jan-2025 03:47:08 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[09-Jan-2025 17:40:26 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[04-Feb-2025 07:38:58 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[04-Feb-2025 07:39:58 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[05-Feb-2025 04:30:49 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[06-Feb-2025 19:27:44 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[10-Feb-2025 19:15:54 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[12-Feb-2025 11:07:57 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[03-Apr-2025 07:49:26 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[09-Apr-2025 21:53:26 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[11-Apr-2025 14:32:42 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[18-Apr-2025 10:02:56 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[18-Apr-2025 19:04:08 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[30-Apr-2025 19:59:45 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[09-May-2025 01:04:51 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[31-May-2025 19:42:33 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[06-Jun-2025 09:05:12 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[04-Jul-2025 06:02:49 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[04-Jul-2025 07:22:18 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[07-Aug-2025 09:07:33 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[10-Sep-2025 18:25:32 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[10-Sep-2025 23:33:27 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[04-Oct-2025 22:36:01 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[04-Oct-2025 22:36:22 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[12-Oct-2025 12:41:37 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[12-Oct-2025 21:39:44 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[28-Oct-2025 15:22:04 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[29-Oct-2025 21:19:23 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[01-Nov-2025 21:10:10 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[11-Nov-2025 12:10:33 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[15-Nov-2025 01:27:38 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[26-Dec-2025 09:57:59 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[17-Jan-2026 16:46:29 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[22-Jan-2026 06:40:39 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[25-Jan-2026 07:19:05 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[27-Jan-2026 07:03:07 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[29-Jan-2026 06:42:37 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[31-Jan-2026 06:42:38 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[01-Feb-2026 19:53:23 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[01-Feb-2026 19:55:14 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[02-Feb-2026 06:53:22 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[04-Feb-2026 07:07:47 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[06-Feb-2026 08:03:15 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[07-Feb-2026 21:01:40 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[09-Feb-2026 11:19:15 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[11-Feb-2026 02:23:04 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[11-Feb-2026 13:45:29 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[13-Feb-2026 13:32:37 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[15-Feb-2026 15:15:02 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[19-Mar-2026 05:18:09 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[20-Mar-2026 00:13:22 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[25-Mar-2026 10:10:38 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[25-Mar-2026 21:58:47 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
[28-Mar-2026 09:17:24 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[13-Apr-2026 12:50:59 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13
|
||||
[13-Apr-2026 19:42:14 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11
|
||||
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Feature;
|
||||
|
||||
// use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||
use Tests\TestCase;
|
||||
|
||||
class ExampleTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* A basic test example.
|
||||
*/
|
||||
public function test_the_application_returns_a_successful_response(): void
|
||||
{
|
||||
$response = $this->get('/');
|
||||
|
||||
$response->assertStatus(200);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,264 @@
|
||||
[24-Jun-2024 14:23:48 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[27-Jun-2024 04:35:15 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[29-Jun-2024 17:44:10 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[05-Jul-2024 13:10:33 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[08-Jul-2024 13:39:16 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[03-Aug-2024 01:36:15 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[03-Aug-2024 02:04:58 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[24-Aug-2024 03:54:41 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[28-Sep-2024 14:19:09 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[18-Oct-2024 17:20:26 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[31-Oct-2024 08:55:25 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[22-Nov-2024 23:17:12 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[01-Dec-2024 22:58:03 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[02-Jan-2025 09:25:28 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[19-Jan-2025 01:06:23 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[31-Jan-2025 07:49:32 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[04-Feb-2025 07:28:28 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[07-Mar-2025 09:40:53 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[28-Mar-2025 12:13:04 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[03-Apr-2025 11:39:34 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[09-Apr-2025 02:33:45 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[24-Apr-2025 16:06:03 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[09-May-2025 01:10:13 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[17-May-2025 23:41:20 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[19-May-2025 22:11:31 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[21-May-2025 22:18:31 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[24-May-2025 22:59:45 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[06-Jun-2025 09:22:11 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[04-Jul-2025 10:44:17 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[01-Aug-2025 20:42:14 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[28-Aug-2025 22:30:33 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[02-Sep-2025 00:06:11 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[21-Sep-2025 09:22:00 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[01-Oct-2025 01:59:59 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[26-Oct-2025 03:11:20 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[30-Oct-2025 09:06:39 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[14-Nov-2025 16:24:51 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[08-Jan-2026 15:40:23 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[10-Jan-2026 05:13:05 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[12-Jan-2026 09:50:47 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[12-Jan-2026 13:41:23 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[15-Jan-2026 07:30:56 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[16-Jan-2026 19:22:21 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[18-Jan-2026 19:56:06 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[20-Jan-2026 19:22:43 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[22-Jan-2026 20:06:42 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[24-Jan-2026 20:05:33 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[26-Jan-2026 20:35:43 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[30-Jan-2026 19:31:42 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[31-Jan-2026 19:33:11 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[01-Feb-2026 19:30:27 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[03-Feb-2026 23:21:01 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[05-Feb-2026 17:31:03 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[05-Feb-2026 20:39:55 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[09-Feb-2026 14:12:52 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[11-Feb-2026 02:32:48 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[13-Feb-2026 02:29:17 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[15-Feb-2026 02:51:06 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[17-Feb-2026 05:18:18 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[18-Feb-2026 23:53:59 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[06-Mar-2026 14:54:12 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[26-Mar-2026 12:46:34 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[26-Mar-2026 13:24:54 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[26-Mar-2026 13:53:23 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[02-Apr-2026 19:49:32 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
[30-Apr-2026 06:10:13 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8
|
||||
Reference in New Issue
Block a user