PHP Classes

File: tests/ExampleTest.php

Recommend this page to a friend!
  Classes of Thierry Feuzeu   Polr Restful API   tests/ExampleTest.php   Download  
File: tests/ExampleTest.php
Role: Class source
Content type: text/plain
Description: Class source
Class: Polr Restful API
Provide an API for the Polr URL shortener service
Author: By
Last change:
Date: 6 years ago
Size: 403 bytes
 

Contents

Class file image Download
<?php

use Illuminate\Foundation\Testing\WithoutMiddleware;
use
Illuminate\Foundation\Testing\DatabaseMigrations;
use
Illuminate\Foundation\Testing\DatabaseTransactions;

class
ExampleTest extends TestCase
{
   
/**
     * A basic functional test example.
     *
     * @return void
     */
   
public function testBasicExample()
    {
       
$this->visit('/')
             ->
see('Laravel 5');
    }
}