X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=net.mograsim.logic.model.am2900%2Ftest%2Fnet%2Fmograsim%2Flogic%2Fui%2Fam2900%2FTestableAm2901.java;h=ad0a0b87b01b6e6bde2a772bbeb446dc550b8c6f;hb=17c2adf6ce5ca91a6ab347bc0c0ee088958bd179;hp=fc4a80a5b825d43411435b48526e849b48573d97;hpb=b5d8c2d71e27350ea7c9314e40df5bb0584271cd;p=Mograsim.git diff --git a/net.mograsim.logic.model.am2900/test/net/mograsim/logic/ui/am2900/TestableAm2901.java b/net.mograsim.logic.model.am2900/test/net/mograsim/logic/ui/am2900/TestableAm2901.java index fc4a80a5..ad0a0b87 100644 --- a/net.mograsim.logic.model.am2900/test/net/mograsim/logic/ui/am2900/TestableAm2901.java +++ b/net.mograsim.logic.model.am2900/test/net/mograsim/logic/ui/am2900/TestableAm2901.java @@ -5,10 +5,6 @@ import static org.junit.jupiter.api.Assertions.assertEquals; import java.util.Arrays; import java.util.stream.Stream; -import org.junit.jupiter.api.extension.ExtensionContext; -import org.junit.jupiter.params.provider.Arguments; -import org.junit.jupiter.params.provider.ArgumentsProvider; - public interface TestableAm2901 { void setup(); @@ -132,15 +128,4 @@ public interface TestableAm2901 return Arrays.stream(values()); } } - - public static class RegisterProvider implements ArgumentsProvider - { - - @Override - public Stream provideArguments(ExtensionContext context) throws Exception - { - return Register.stream().map(Arguments::of); - } - - } }