PHP Classes

File: tests/Feature/ExampleTest.php

Recommend this page to a friend!
  Classes of Ewerton Daniel   Laravel Examples   tests/Feature/ExampleTest.php   Download  
File: tests/Feature/ExampleTest.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Laravel Examples
Teach how to use Laravel from examples
Author: By
Last change:
Date: 2 months ago
Size: 109 bytes
 

Contents

Class file image Download
<?php

test
('example', function () {
   
$response = $this->get('/');

   
$response->assertStatus(200);
});