| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 10 | abstract class TestCase extends BaseTestCase |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Asserts that two given JSON encoded objects or arrays are equal. |
||
| 14 | * |
||
| 15 | * @param mixed $expected |
||
| 16 | * @param mixed $actual |
||
| 17 | * @throws \PHPUnit\Framework\ExpectationFailedException |
||
| 18 | * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException |
||
| 19 | */ |
||
| 20 | public function assertJsonEquals($expected, $actual, string $message = ''): void |
||
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Asserts that two given SQL query statements are equal. |
||
| 27 | */ |
||
| 28 | public function assertSqlEquals(string $expected, string $actual, string $message = ''): void |
||
| 34 |