invoiceninja/tests/ExampleTest.php

17 lines
308 B
PHP
Raw Permalink Normal View History

2015-03-12 10:44:39 +10:00
<?php
class ExampleTest extends TestCase {
/**
* A basic functional test example.
*
* @return void
*/
public function testBasicExample()
{
2019-01-30 22:00:26 +11:00
//$crawler = $this->client->request('GET', '/');
//$this->assertTrue($this->client->getResponse()->isRedirect());
$this->assertTrue(true, true);
2015-03-12 10:44:39 +10:00
}
}