| Total Complexity | 2 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class Assert |
||
| 15 | { |
||
| 16 | protected $testCase; |
||
| 17 | |||
| 18 | protected $callStack; |
||
| 19 | |||
| 20 | protected $apiCallStack; |
||
| 21 | |||
| 22 | protected $config; |
||
| 23 | |||
| 24 | 2 | public function __construct(TestCase $testCase) |
|
| 25 | { |
||
| 26 | 2 | $this->testCase = $testCase; |
|
| 27 | |||
| 28 | 2 | $this->callStack = ComCallStack::instance(); |
|
| 29 | |||
| 30 | 2 | $this->apiCallStack = ApiObjectCallStack::instance(); |
|
| 31 | |||
| 32 | 2 | $this->config = Config::testInstance(); |
|
| 33 | 2 | } |
|
| 34 | |||
| 35 | 2 | public function assertConnectionWasUsed($connection, string $message = null) |
|
| 48 | ); |
||
| 49 | 2 | } |
|
| 51 |