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
// Abrote test if we have no local version with a auto version of the module. We will only do the follwing asserts if we have a local version with 'auto'.
36
38
if (count($modules) != 1 || $modules[0]->getVersion() != 'auto') {
37
-
return;
39
+
return; // Entfernen, wenn wir den Skip Message haben möchten.
40
+
self::markTestSkipped('No local auto module available in this environment.');
38
41
}
39
42
40
-
$this->assertEquals(1, count($modules)); // Lokale Version mit 'auto';
43
+
$this->assertEquals(1, count($modules)); // Local version with 'auto';
// Abrote test if we have no local version with a auto version of the module. We will only do the follwing asserts if we have a local version with 'auto'.
61
63
if (count($modules) == 1) {
62
-
return;
64
+
return; // Entfernen, wenn wir den Skip Message haben möchten.
65
+
self::markTestSkipped('There is a local auto module available in this environment.');
63
66
}
64
67
65
-
$this->assertEquals(0, count($modules)); // Lokale Version mit 'auto';
68
+
$this->assertEquals(0, count($modules)); // No local version with 'auto';
0 commit comments