Passed
Pull Request — master (#56)
by
unknown
02:23
created

ApiTestCase::checkSchema()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 2
nc 2
nop 0
1
<?php
2
3
namespace ByJG\ApiTools;
4
5
use ByJG\ApiTools\Base\BaseTestCase;
6
use GuzzleHttp\GuzzleException;
7
use PHPUnit\Framework\TestCase;
8
9
abstract class ApiTestCase extends TestCase
10
{
11
   use AssertRequestAgainstSchema;
12
}
13