| Total Complexity | 3 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class WebHookTest extends TestCase |
||
| 19 | { |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var WebHooks |
||
| 23 | */ |
||
| 24 | protected $web_hooks; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @test |
||
| 28 | */ |
||
| 29 | 1 | public function testSetCollection() |
|
| 30 | { |
||
| 31 | |||
| 32 | 1 | $this->assertEquals(1, $this->web_hooks->count()); |
|
| 33 | 1 | $this->assertInstanceOf(WebHooks::class, $this->web_hooks); |
|
| 34 | |||
| 35 | 1 | } |
|
| 36 | |||
| 37 | 1 | public function testElementIsWebHook() { |
|
| 39 | 1 | } |
|
| 40 | |||
| 41 | /** |
||
| 42 | * Setup the test environment. |
||
| 43 | */ |
||
| 44 | 2 | protected function setUp() |
|
| 59 | } |
||
| 60 | } |