From 72b051fa7c60e10adee86fbdc458ac5eb7a3bcc3 Mon Sep 17 00:00:00 2001 From: Andre Holzner Date: Mon, 13 Nov 2017 18:23:52 +0100 Subject: [PATCH] added class to tag junit tests for tests relying on external systems --- .../utilities/daqaggregator/TestWithExternalSystem.java | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/test/java/rcms/utilities/daqaggregator/TestWithExternalSystem.java diff --git a/src/test/java/rcms/utilities/daqaggregator/TestWithExternalSystem.java b/src/test/java/rcms/utilities/daqaggregator/TestWithExternalSystem.java new file mode 100644 index 00000000..53877a65 --- /dev/null +++ b/src/test/java/rcms/utilities/daqaggregator/TestWithExternalSystem.java @@ -0,0 +1,9 @@ +package rcms.utilities.daqaggregator; + +/** + * Marker for JUnit tests which need the presence of an external system + * and should therefore not be run during release building. + */ +public interface TestWithExternalSystem { + +}