tethys/tests/ExampleTest.php

18 lines
305 B
PHP
Raw Permalink Normal View History

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