From 5c92b3a9dbbf052026219741e3a14660afa82a3b Mon Sep 17 00:00:00 2001 From: Armin Schrenk Date: Tue, 20 Feb 2024 16:01:49 +0100 Subject: [PATCH] add missing class --- .../common/InitExceptionTestClass.java | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/test/java/org/cryptomator/integrations/common/InitExceptionTestClass.java diff --git a/src/test/java/org/cryptomator/integrations/common/InitExceptionTestClass.java b/src/test/java/org/cryptomator/integrations/common/InitExceptionTestClass.java new file mode 100644 index 0000000..186f557 --- /dev/null +++ b/src/test/java/org/cryptomator/integrations/common/InitExceptionTestClass.java @@ -0,0 +1,25 @@ +package org.cryptomator.integrations.common; + +@CheckAvailability +public class InitExceptionTestClass { + + private static final String TEST; + + static { + TEST = throwSomethig(); + } + + public InitExceptionTestClass() { + + } + + static String throwSomethig() { + throw new RuntimeException("STATIC FAIL"); + } + + @CheckAvailability + public static boolean test() { + return true; + } + +}