Migrate tests to JUnit 5 (#8519)

Signed-off-by: Wouter Born <github@maindrain.net>
This commit is contained in:
Wouter Born
2020-09-21 18:21:26 +02:00
committed by GitHub
parent 6df6783b60
commit bd82ca82df
478 changed files with 3996 additions and 4419 deletions

View File

@@ -24,7 +24,7 @@ import java.util.function.Supplier;
import javax.measure.Quantity;
import org.eclipse.jdt.annotation.NonNull;
import org.junit.Test;
import org.junit.jupiter.api.Test;
import org.mockito.ArgumentMatchers;
import org.mockito.Mockito;
import org.openhab.binding.smartmeter.connectors.ConnectorBase;

View File

@@ -12,8 +12,9 @@
*/
package org.openhab.binding.smartmeter;
import org.junit.Assert;
import org.junit.Test;
import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.Test;
import org.openhab.binding.smartmeter.internal.MeterValue;
import org.openhab.binding.smartmeter.internal.conformity.negate.NegateBitModel;
import org.openhab.binding.smartmeter.internal.conformity.negate.NegateBitParser;
@@ -30,9 +31,9 @@ public class TestNegateBit {
public void testNegateBitParsing() {
String negateProperty = "1-0_1-8-0:5:1";
NegateBitModel parseNegateProperty = NegateBitParser.parseNegateProperty(negateProperty);
Assert.assertEquals("1-0_1-8-0", parseNegateProperty.getNegateChannelId());
Assert.assertEquals(5, parseNegateProperty.getNegatePosition());
Assert.assertEquals(true, parseNegateProperty.isNegateBit());
assertEquals("1-0_1-8-0", parseNegateProperty.getNegateChannelId());
assertEquals(5, parseNegateProperty.getNegatePosition());
assertEquals(true, parseNegateProperty.isNegateBit());
}
@Test
@@ -43,7 +44,7 @@ public class TestNegateBit {
return new MeterValue<>(obis, "65954", null);
});
Assert.assertTrue(negateState);
assertTrue(negateState);
}
@Test
@@ -54,6 +55,6 @@ public class TestNegateBit {
return new MeterValue<>(obis, "0", null, "65922");
});
Assert.assertFalse(negateState);
assertFalse(negateState);
}
}