mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-09 20:52:56 +01:00
17 lines
266 B
PHP
Executable File
17 lines
266 B
PHP
Executable File
<?php
|
|
|
|
class ExampleTest extends TestCase {
|
|
|
|
/**
|
|
* A basic functional test example.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testBasicExample()
|
|
{
|
|
$crawler = $this->client->request('GET', '/');
|
|
|
|
$this->assertTrue($this->client->getResponse()->isOk());
|
|
}
|
|
|
|
} |