Fix assertions in DependencyResolverTest
This commit is contained in:
parent
0252776195
commit
8caafd6d01
1 changed files with 4 additions and 3 deletions
|
@ -19,7 +19,6 @@
|
|||
|
||||
package de.staropensource.sosengine.base.srctests.utility;
|
||||
|
||||
import de.staropensource.sosengine.base.Engine;
|
||||
import de.staropensource.sosengine.base.exception.dependency.UnmetDependenciesException;
|
||||
import de.staropensource.sosengine.base.implementation.versioning.OneNumberVersioningSystem;
|
||||
import de.staropensource.sosengine.base.srctests.TestBase;
|
||||
|
@ -33,7 +32,7 @@ import org.junit.jupiter.params.provider.ValueSource;
|
|||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
|
||||
/**
|
||||
* Tests the class {@link DependencyResolver}.
|
||||
|
@ -270,6 +269,8 @@ class DependencyResolverTest extends TestBase {
|
|||
getLogger().error("Dependency resolution failed: Unmet dependencies found:");
|
||||
for (DependencyVector vector : exception.getUnmetDependencies().keySet())
|
||||
getLogger().error("-> " + vector.getIdentifier() + "=" + vector.getVersion() + ": " + exception.getUnmetDependencies().get(vector));
|
||||
|
||||
assertEquals("Please ignore this, this just exists to trigger an error", "", "Dependency resolution failed (layers=" + layers + "): See logs");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -489,6 +490,6 @@ class DependencyResolverTest extends TestBase {
|
|||
return;
|
||||
}
|
||||
|
||||
assertNotNull(Engine.getInstance(), "Dependency resolution succeeded (layers=" + layers + ")");
|
||||
assertEquals("Please ignore this, this just exists to trigger an error", "", "Dependency resolution succeeded (layers=" + layers + ")");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue