aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Beeker <kiwiwings@apache.org>2021-01-10 21:36:32 +0000
committerAndreas Beeker <kiwiwings@apache.org>2021-01-10 21:36:32 +0000
commit9daa77751a524300e70cee3a6a467cabcb980817 (patch)
treefd80056384f03f37608a482b11f0beef27e9bf87
parent1041a876cb2bbd6f6349986645018160be0ba6e2 (diff)
downloadpoi-9daa77751a524300e70cee3a6a467cabcb980817.tar.gz
poi-9daa77751a524300e70cee3a6a467cabcb980817.zip
revert Sonar fixes on BaseIntegrationTest
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1885341 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--src/integrationtest/org/apache/poi/stress/BaseIntegrationTest.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/integrationtest/org/apache/poi/stress/BaseIntegrationTest.java b/src/integrationtest/org/apache/poi/stress/BaseIntegrationTest.java
index bff0cb1ba8..2890e3ded7 100644
--- a/src/integrationtest/org/apache/poi/stress/BaseIntegrationTest.java
+++ b/src/integrationtest/org/apache/poi/stress/BaseIntegrationTest.java
@@ -38,7 +38,7 @@ import org.junit.jupiter.api.Test;
* types of files/exceptions, e.g. old file formats.
*
*/
-class BaseIntegrationTest {
+public class BaseIntegrationTest {
private final File rootDir;
private final String file;
private FileHandler handler;
@@ -49,7 +49,6 @@ class BaseIntegrationTest {
this.handler = handler;
}
- @Test
void test() throws Exception {
assertNotNull( handler, "Unknown file extension for file: " + file + ": " + TestAllFiles.getExtension(file) );
testOneFile(new File(rootDir, file));