@@ -4,6 +4,9 @@ |
||
4 | 4 | |
5 | 5 | abstract class ExpectationFailed extends \Exception |
6 | 6 | { |
7 | + /** |
|
8 | + * @return string |
|
9 | + */ |
|
7 | 10 | abstract function getContextText(); |
8 | 11 | |
9 | 12 | /** |
@@ -6,8 +6,6 @@ |
||
6 | 6 | use Behat\Behat\Context\Context; |
7 | 7 | use Behat\Behat\Context\SnippetAcceptingContext; |
8 | 8 | use Behat\Gherkin\Node\PyStringNode; |
9 | -use Behat\Gherkin\Node\TableNode; |
|
10 | -use Psr\Http\Message\RequestInterface; |
|
11 | 9 | use Psr\Http\Message\ResponseInterface; |
12 | 10 | use Rezzza\RestApiBehatExtension\Rest\RestApiBrowser; |
13 | 11 |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | */ |
44 | 44 | public function theJsonNodeShouldBeEqualTo($jsonNode, $expectedValue) |
45 | 45 | { |
46 | - $this->assert(function () use ($jsonNode, $expectedValue) { |
|
46 | + $this->assert(function() use ($jsonNode, $expectedValue) { |
|
47 | 47 | $realValue = $this->evaluateJsonNodeValue($jsonNode); |
48 | 48 | $this->asserter->variable($realValue)->isEqualTo($expectedValue); |
49 | 49 | }); |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | */ |
56 | 56 | public function theJsonNodeShouldHaveElements($jsonNode, $expectedNth) |
57 | 57 | { |
58 | - $this->assert(function () use ($jsonNode, $expectedNth) { |
|
58 | + $this->assert(function() use ($jsonNode, $expectedNth) { |
|
59 | 59 | $realValue = $this->evaluateJsonNodeValue($jsonNode); |
60 | 60 | $this->asserter->phpArray($realValue)->hasSize($expectedNth); |
61 | 61 | }); |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | */ |
67 | 67 | public function theJsonArrayNodeShouldContainElements($jsonNode, $expectedValue) |
68 | 68 | { |
69 | - $this->assert(function () use ($jsonNode, $expectedValue) { |
|
69 | + $this->assert(function() use ($jsonNode, $expectedValue) { |
|
70 | 70 | $realValue = $this->evaluateJsonNodeValue($jsonNode); |
71 | 71 | $this->asserter->phpArray($realValue)->contains($expectedValue); |
72 | 72 | }); |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | */ |
78 | 78 | public function theJsonArrayNodeShouldNotContainElements($jsonNode, $expectedValue) |
79 | 79 | { |
80 | - $this->assert(function () use ($jsonNode, $expectedValue) { |
|
80 | + $this->assert(function() use ($jsonNode, $expectedValue) { |
|
81 | 81 | $realValue = $this->evaluateJsonNodeValue($jsonNode); |
82 | 82 | $this->asserter->phpArray($realValue)->notContains($expectedValue); |
83 | 83 | }); |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | */ |
89 | 89 | public function theJsonNodeShouldContain($jsonNode, $expectedValue) |
90 | 90 | { |
91 | - $this->assert(function () use ($jsonNode, $expectedValue) { |
|
91 | + $this->assert(function() use ($jsonNode, $expectedValue) { |
|
92 | 92 | $realValue = $this->evaluateJsonNodeValue($jsonNode); |
93 | 93 | $this->asserter->string((string) $realValue)->contains($expectedValue); |
94 | 94 | }); |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | */ |
102 | 102 | public function theJsonNodeShouldNotContain($jsonNode, $unexpectedValue) |
103 | 103 | { |
104 | - $this->assert(function () use ($jsonNode, $unexpectedValue) { |
|
104 | + $this->assert(function() use ($jsonNode, $unexpectedValue) { |
|
105 | 105 | $realValue = $this->evaluateJsonNodeValue($jsonNode); |
106 | 106 | $this->asserter->string((string) $realValue)->notContains($unexpectedValue); |
107 | 107 | }); |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | { |
153 | 153 | $tempFilename = tempnam(sys_get_temp_dir(), 'rae'); |
154 | 154 | file_put_contents($tempFilename, $jsonSchemaContent); |
155 | - $this->assert(function () use ($tempFilename) { |
|
155 | + $this->assert(function() use ($tempFilename) { |
|
156 | 156 | $this->jsonInspector->validateJson( |
157 | 157 | new JsonSchema($tempFilename) |
158 | 158 | ); |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | { |
168 | 168 | $filename = $this->resolveFilename($filename); |
169 | 169 | |
170 | - $this->assert(function () use ($filename) { |
|
170 | + $this->assert(function() use ($filename) { |
|
171 | 171 | $this->jsonInspector->validateJson( |
172 | 172 | new JsonSchema($filename) |
173 | 173 | ); |
@@ -187,7 +187,7 @@ discard block |
||
187 | 187 | throw new \Exception('The expected JSON is not a valid'); |
188 | 188 | } |
189 | 189 | |
190 | - $this->assert(function () use ($realJsonValue, $expectedJsonValue) { |
|
190 | + $this->assert(function() use ($realJsonValue, $expectedJsonValue) { |
|
191 | 191 | $this->asserter->castToString($realJsonValue)->isEqualTo((string) $expectedJsonValue); |
192 | 192 | }); |
193 | 193 | } |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | )); |
216 | 216 | } |
217 | 217 | |
218 | - $filename = $this->jsonSchemaBaseUrl . '/' . $filename; |
|
218 | + $filename = $this->jsonSchemaBaseUrl.'/'.$filename; |
|
219 | 219 | |
220 | 220 | if (false === is_file($filename)) { |
221 | 221 | throw new \RuntimeException(sprintf( |