PHP Classes

File: apps/MS-AvailableHotels/tests/ExampleTest.php

Recommend this page to a friend!
  Classes of mohammad anzawi   PHP Hotel Booking Available   apps/MS-AvailableHotels/tests/ExampleTest.php   Download  
File: apps/MS-AvailableHotels/tests/ExampleTest.php
Role: Class source
Content type: text/plain
Description: Class source
Class: PHP Hotel Booking Available
Search for hotels that are available for booking
Author: By
Last change:
Date: 2 years ago
Size: 390 bytes
 

Contents

Class file image Download
<?php

use Laravel\Lumen\Testing\DatabaseMigrations;
use
Laravel\Lumen\Testing\DatabaseTransactions;

class
ExampleTest extends TestCase
{
   
/**
     * A basic test example.
     *
     * @return void
     */
   
public function testExample()
    {
       
$this->get('/');

       
$this->assertEquals(
           
$this->app->version(), $this->response->getContent()
        );
    }
}