PHP Classes

File: tests/Feature/ExampleTest.php

Recommend this page to a friend!
  Classes of Thierry Feuzeu   Jaxon DB Admin   tests/Feature/ExampleTest.php   Download  
File: tests/Feature/ExampleTest.php
Role: Class source
Content typex: text/plain
Description: Class source
Class: Jaxon DB Admin
Web application to manage SQL of databases
Author: By
Last change: Update of tests/Feature/ExampleTest.php
Date: 1 month ago
Size: 359 bytes
 

Contents

Class file image Download
<?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);
    }
}