From 5986069eb9a8a737a33ab35934acba0c3f660b13 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Sun, 21 May 2023 17:33:48 -0500 Subject: [PATCH] comment out Compression Unit tests --- core/src/test/java/tests/CompressionTest.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/core/src/test/java/tests/CompressionTest.java b/core/src/test/java/tests/CompressionTest.java index d84cfb8bb..e20019184 100644 --- a/core/src/test/java/tests/CompressionTest.java +++ b/core/src/test/java/tests/CompressionTest.java @@ -85,14 +85,15 @@ import java.util.ArrayList; * * Note: * In order to test the compressors that aren't currently in use:
- * 1. uncomment the tests in this file
- * 2. add the following to build.gradle's dependencies block:
+ * 1. Generate DH data and point the {@link CompressionTest#TEST_DIR} variable to the "Distant_Horizons" folder. + * 2. Add the following to build.gradle's dependencies block:
* * shadowMe("org.tukaani:xz:1.9") * shadowMe("org.apache.commons:commons-compress:1.21") * shadowMe("com.github.luben:zstd-jni:1.5.5-3") - * - * + *
+ * 3. Uncomment the tests in this file
+ * 4. Run the tests like normal */ public class CompressionTest { @@ -105,7 +106,7 @@ public class CompressionTest - @Test +// @Test public void NoCompression() { String compressorName = "Uncompressed"; @@ -120,7 +121,7 @@ public class CompressionTest this.testCompressor(compressorName, FULL_DATA_PATH, createInputStreamFunc, createOutputStreamFunc); } - @Test +// @Test public void Lz4() { String compressorName = "LZ4";