From b30404f156adb6e01bfe4edc50b4de4245ba4509 Mon Sep 17 00:00:00 2001 From: Jonas Herzig Date: Fri, 12 Nov 2021 11:58:05 +0100 Subject: Separate B from A test files So we are closer to a realistic setup and can tell when we accidentally look up a class in the wrong project. Also allows us to have changes in a class but not to the class or its package (i.e. same file). --- src/test/java/a/pkg/AInterface.java | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 src/test/java/a/pkg/AInterface.java (limited to 'src/test/java/a/pkg/AInterface.java') diff --git a/src/test/java/a/pkg/AInterface.java b/src/test/java/a/pkg/AInterface.java deleted file mode 100644 index 8786c94..0000000 --- a/src/test/java/a/pkg/AInterface.java +++ /dev/null @@ -1,5 +0,0 @@ -package a.pkg; - -public interface AInterface { - void aInterfaceMethod(); -} -- cgit