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
@@ -136,6 +139,8 @@ public function assertFileAsserts(
136
139
$expectedCertainty->equals($actualCertainty),
137
140
sprintf('Expected %s, actual certainty of %s is %s in %s on line %d.', $expectedCertainty->describe(), $variableName, $actualCertainty->describe(), $file, $args[3]),
138
141
);
142
+
} elseif ($assertType === 'error') {
143
+
$this->fail($args[0]);
139
144
}
140
145
}
141
146
@@ -148,11 +153,37 @@ 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()),
0 commit comments