Files
spa-api/app/tests/ExampleTest.php

18 lines
267 B
PHP
Raw Normal View History

2013-01-11 15:14:07 -06:00
<?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());
}
2014-03-15 10:14:55 +00:00
}