tethys/tests/ExampleTest.php

18 lines
305 B
PHP
Raw Normal View History

2015-07-19 06:49:24 +00:00
<?php
2021-02-26 16:02:07 +00:00
namespace Tests;
2015-07-19 06:49:24 +00:00
2018-08-06 12:30:51 +00:00
class ExampleTest extends TestCase
{
2015-07-19 06:49:24 +00:00
2018-08-06 12:30:51 +00:00
/**
* A basic functional test example.
*
* @return void
*/
public function testBasicExample()
{
$response = $this->call('GET', '/');
$this->assertEquals(200, $response->getStatusCode());
}
2015-07-19 06:49:24 +00:00
}