PHP Classes

File: server/tests/Feature/ExampleTest.php

Recommend this page to a friend!
  Classes of mohammad anzawi   PHP Wallet API and Application   server/tests/Feature/ExampleTest.php   Download  
File: server/tests/Feature/ExampleTest.php
Role: Class source
Content type: text/plain
Description: Class source
Class: PHP Wallet API and Application
Application to manage a wallet by calling an API
Author: By
Last change:
Date: 2 years ago
Size: 339 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.
     *
     * @return void
     */
   
public function test_example()
    {
       
$response = $this->get('/');

       
$response->assertStatus(200);
    }
}