PATH:
home
/
thebhoeo
/
.trash
/
wpforms-lite-pro
/
vendor_prefixed
/
apimatic
/
core
/
src
/
TestCase
/
BodyMatchers
<?php declare (strict_types=1); namespace WPForms\Vendor\Core\TestCase\BodyMatchers; use WPForms\Vendor\Core\Utils\CoreHelper; class KeysBodyMatcher extends BodyMatcher { /** * Initializes a new KeysBodyMatcher object with the parameters provided. */ public static function init($expectedBody, bool $matchArrayOrder = \false, bool $matchArrayCount = \false) : self { $matcher = new self(new BodyComparator(!$matchArrayCount, $matchArrayOrder, \false), $expectedBody); $matcher->defaultMessage = 'Response body does not match in keys'; return $matcher; } /** * Compares rawBody with expectedBody and asserts if expectedBody is a subset of rawBody or not. */ public function assert(string $rawBody) { parent::assert($rawBody); $this->testCase->assertTrue($this->bodyComparator->compare($this->expectedBody, CoreHelper::deserialize($rawBody)), $this->defaultMessage); } }
[-] KeysAndValuesBodyMatcher.php
[edit]
[+]
..
[-] BodyComparator.php
[edit]
[-] BodyMatcher.php
[edit]
[-] KeysBodyMatcher.php
[edit]
[-] NativeBodyMatcher.php
[edit]
[-] RawBodyMatcher.php
[edit]