- Add proper Tests\ namespace to all test classes in tests/Feature and tests/Unit - Split RemainingModelsTest.php into separate files (PSR-4 compliance) - Create missing factories: MetaFactory, RemoteEmailFactory - Add HasFactory trait to RemoteEmail model - Add missing ReflectionClass imports to test files - Fix mass assignment issues in Meta and RemoteEmail models - Override database connection for RemoteEmail in testing environment - Fix DateTime comparison precision issues in tests
17 lines
394 B
PHP
17 lines
394 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
// Simple test to check if Laravel application is working
|
|
use Tests\TestCase;
|
|
|
|
class ApplicationTest extends TestCase
|
|
{
|
|
/** @test */
|
|
public function it_checks_if_application_is_running()
|
|
{
|
|
$this->assertInstanceOf(\Illuminate\Foundation\Application::class, $this->app);
|
|
$this->assertEquals('ZEmailnator', config('app.name'));
|
|
}
|
|
}
|