We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e30fe38 commit 708d972Copy full SHA for 708d972
src/main/java/org/junit/experimental/annotations/ThreadSafe.java
@@ -0,0 +1,17 @@
1
+package org.junit.experimental.annotations;
2
+
3
+import java.lang.annotation.*;
4
5
+/**
6
+ * Implementation is guaranteed to be free of race conditions
7
+ * when accessed by multiple threads simultaneously.
8
+ *
9
+ * @author Tibor Digana (tibor17)
10
+ * @version 4.12
11
+ * @since 4.12
12
+ */
13
+@Documented
14
+@Target(ElementType.TYPE)
15
+@Retention(RetentionPolicy.RUNTIME)
16
+public @interface ThreadSafe {
17
+}
0 commit comments