githubtrue/backend/tests/ExampleTest.php @ a139ba77
1 |
<?php
|
---|---|
2 |
|
3 |
use Laravel\Lumen\Testing\DatabaseTransactions; |
4 |
|
5 |
class ExampleTest extends TestCase |
6 |
{
|
7 |
/**
|
8 |
* A basic test example.
|
9 |
*
|
10 |
* @return void
|
11 |
*/
|
12 |
public function testExample() |
13 |
{
|
14 |
$this->get('/'); |
15 |
|
16 |
$this->assertEquals( |
17 |
$this->response->getContent(), $this->app->version() |
18 |
);
|
19 |
}
|
20 |
}
|