tethys/tests/ExampleTest.php

18 lines
289 B
PHP
Raw Normal View History

2015-07-19 06:49:24 +00:00
<?php
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', '/');
2015-07-19 06:49:24 +00:00
2018-08-06 12:30:51 +00:00
$this->assertEquals(200, $response->getStatusCode());
}
2015-07-19 06:49:24 +00:00
}