aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/junit/function/ThrowingRunnable.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/junit/function/ThrowingRunnable.java')
-rw-r--r--src/main/java/org/junit/function/ThrowingRunnable.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/main/java/org/junit/function/ThrowingRunnable.java b/src/main/java/org/junit/function/ThrowingRunnable.java
deleted file mode 100644
index d0eb782..0000000
--- a/src/main/java/org/junit/function/ThrowingRunnable.java
+++ /dev/null
@@ -1,14 +0,0 @@
-package org.junit.function;
-
-/**
- * This interface facilitates the use of
- * {@link org.junit.Assert#assertThrows(Class, ThrowingRunnable)} from Java 8. It allows method
- * references to void methods (that declare checked exceptions) to be passed directly into
- * {@code assertThrows}
- * without wrapping. It is not meant to be implemented directly.
- *
- * @since 4.13
- */
-public interface ThrowingRunnable {
- void run() throws Throwable;
-}