<META NAME="robots" CONTENT="noindex,nofollow">


PK     \jg  g    Feature/ExampleTest.phpnu         <?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);
    }
}
PK     \{]        Unit/ExampleTest.phpnu         <?php

namespace Tests\Unit;

use PHPUnit\Framework\TestCase;

class ExampleTest extends TestCase
{
    /**
     * A basic test example.
     */
    public function test_that_true_is_true(): void
    {
        $this->assertTrue(true);
    }
}
PK     \P        TestCase.phpnu         <?php

namespace Tests;

use Illuminate\Foundation\Testing\TestCase as BaseTestCase;

abstract class TestCase extends BaseTestCase
{
    use CreatesApplication;
}
PK     I\`yw  w    CreatesApplication.phpnu         <?php

namespace Tests;

use Illuminate\Contracts\Console\Kernel;
use Illuminate\Foundation\Application;

trait CreatesApplication
{
    /**
     * Creates the application.
     */
    public function createApplication(): Application
    {
        $app = require __DIR__.'/../bootstrap/app.php';

        $app->make(Kernel::class)->bootstrap();

        return $app;
    }
}
PK       \jg  g                  Feature/ExampleTest.phpnu         PK       \{]                    Unit/ExampleTest.phpnu         PK       \P                    TestCase.phpnu         PK       I\`yw  w                CreatesAp