Projekt

Obecné

Profil

Stáhnout (344 Bajtů) Statistiky
| Větev: | Revize:
1 54fa168c Cajova-Houba
<?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 cb15593b Cajova-Houba
            $this->response->getContent(), $this->app->version()
18 54fa168c Cajova-Houba
        );
19
    }
20
}