summaryrefslogtreecommitdiff
path: root/src/test/java/bjc/everge/TestUtils.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/bjc/everge/TestUtils.java')
-rw-r--r--src/test/java/bjc/everge/TestUtils.java19
1 files changed, 1 insertions, 18 deletions
diff --git a/src/test/java/bjc/everge/TestUtils.java b/src/test/java/bjc/everge/TestUtils.java
index 49e962e..b3ca419 100644
--- a/src/test/java/bjc/everge/TestUtils.java
+++ b/src/test/java/bjc/everge/TestUtils.java
@@ -16,29 +16,12 @@ import static org.junit.Assert.*;
*
* @author Ben Culkin
*/
+@SuppressWarnings("javadoc")
public class TestUtils {
- /**
- * Assert that a ReplParseException is thrown with a given message.
- *
- * @param msg
- * The message.
- * @param fle
- * The file to load input from.
- */
public static void assertThrownMessage(String msg, String fle) {
assertThrownMessage(false, msg, fle);
}
- /**
- * Assert that a ReplParseException is thrown with a given message.
- *
- * @param logMsg
- * Log the exception message.
- * @param msg
- * The message.
- * @param fle
- * The file to load input from.
- */
public static void assertThrownMessage(boolean logMsg, String msg, String fle) {
try (FileInputStream fis = new FileInputStream(fle);
Scanner scn = new Scanner(fis)) {