Add missing Test annotations

This commit is contained in:
SiboVG 2024-08-09 05:47:07 +02:00
parent 7d2c3c0676
commit b5d9343ff0
3 changed files with 3 additions and 0 deletions

View File

@ -24,6 +24,7 @@ public class ManufacturerTest {
}
@Test
public void testContrail() {
Manufacturer c1, c2;

View File

@ -78,6 +78,7 @@ public class TestGenericModifier extends BaseTestCase {
assertEquals(4.0, value.d, EPSILON);
}
@Test
public void testSingularRange() throws OptimizationException {
gm.setMinValue(1.0);
gm.setMaxValue(1.0);

View File

@ -207,6 +207,7 @@ public class TestMutex {
}
}
@Test
public void testBogusMutex() {
SafetyMutex m = new SafetyMutex.BogusSafetyMutex();
m.lock("foo");