biscolab /
laravel-updown
| 1 | <?php |
||
| 2 | /** |
||
| 3 | * Copyright (c) 2019 - present |
||
| 4 | * laravel-updown - UpDownEventTest.php |
||
| 5 | * author: Roberto Belotti - [email protected] |
||
| 6 | * web : robertobelotti.com, github.com/biscolab |
||
| 7 | * Initial version created on: 28/2/2019 |
||
| 8 | * MIT license: https://github.com/biscolab/laravel-updown/blob/master/LICENSE |
||
| 9 | */ |
||
| 10 | |||
| 11 | namespace Biscolab\LaravelUpDown\Tests; |
||
| 12 | |||
| 13 | use Biscolab\UpDown\Objects\Event; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Class UpDownEventTest |
||
| 17 | * @package Biscolab\LaravelUpDown\Tests |
||
| 18 | */ |
||
| 19 | class UpDownEventTest extends TestCase |
||
| 20 | { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @test |
||
| 24 | */ |
||
| 25 | public function testEventMethodReturnsEventObject() |
||
| 26 | { |
||
| 27 | |||
| 28 | $this->assertInstanceOf(Event::class, updown()->Event()); |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @return void |
||
| 33 | */ |
||
| 34 | public function setUp(): void |
||
| 35 | { |
||
| 36 | |||
| 37 | parent::setUp(); // TODO: Change the autogenerated stub |
||
| 38 | |||
| 39 | } |
||
| 40 | } |