You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sprintf('Expected type %s, got type %s in %s on line %d.', $expected, $actual, $file, $args[2]),
145
+
$failureMessage,
133
146
);
134
147
} elseif ($assertType === 'variableCertainty') {
135
148
$expectedCertainty = $args[0];
136
149
$actualCertainty = $args[1];
137
150
$variableName = $args[2];
151
+
152
+
$failureMessage = sprintf('Expected %s, actual certainty of %s is %s in %s on line %d.', $expectedCertainty->describe(), $variableName, $actualCertainty->describe(), $file, $args[3]);
153
+
$delayedErrors = $args[4] ?? [];
154
+
if (count($delayedErrors) > 0) {
155
+
$failureMessage .= sprintf(
156
+
"\n\nThis failure might be reported because of the following misconfiguration %s:\n\n",
sprintf('Expected %s, actual certainty of %s is %s in %s on line %d.', $expectedCertainty->describe(), $variableName, $actualCertainty->describe(), $file, $args[3]),
166
+
$failureMessage,
141
167
);
142
-
} elseif ($assertType === 'error') {
143
-
$this->fail($args[0]);
144
168
}
145
169
}
146
170
@@ -158,30 +182,23 @@ public static function gatherAssertTypes(string $file): array
if (!$reflectionProvider->hasClass($node->namespacedName->toString())) {
180
-
$asserts[$file . ':' . $node->getStartLine()] = [
181
-
'error',
182
-
$file,
183
-
sprintf('Trait %s not found in ReflectionProvider. Configure "autoload-dev" section in composer.json to include your tests directory.', $node->namespacedName->toString()),
184
-
];
201
+
$delayedErrors[] = sprintf('Trait %s not found in ReflectionProvider. Configure "autoload-dev" section in composer.json to include your tests directory.', $node->namespacedName->toString());
185
202
}
186
203
}
187
204
if (!$nodeinstanceofNode\Expr\FuncCall) {
@@ -303,6 +320,15 @@ public static function gatherAssertTypes(string $file): array
303
320
self::fail(sprintf('File %s does not contain any asserts', $file));
'Class NamespaceForNonexistentClasses\Foo not found in ReflectionProvider. Configure "autoload-dev" section in composer.json to include your tests directory.',
38
-
7,
39
-
],
40
-
[
41
-
'Trait NamespaceForNonexistentClasses\FooTrait not found in ReflectionProvider. Configure "autoload-dev" section in composer.json to include your tests directory.',
0 commit comments