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

ApiTestCase::assertRequest()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 19

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 19
rs 9.6333
c 0
b 0
f 0
cc 2
nc 2
nop 1
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