summaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/test/java/com/yahoo/jdisc/core/ExportPackagesTestCase.java
diff options
context:
space:
mode:
Diffstat (limited to 'jdisc_core/src/test/java/com/yahoo/jdisc/core/ExportPackagesTestCase.java')
-rw-r--r--jdisc_core/src/test/java/com/yahoo/jdisc/core/ExportPackagesTestCase.java30
1 files changed, 0 insertions, 30 deletions
diff --git a/jdisc_core/src/test/java/com/yahoo/jdisc/core/ExportPackagesTestCase.java b/jdisc_core/src/test/java/com/yahoo/jdisc/core/ExportPackagesTestCase.java
deleted file mode 100644
index 225ecd4a242..00000000000
--- a/jdisc_core/src/test/java/com/yahoo/jdisc/core/ExportPackagesTestCase.java
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.jdisc.core;
-
-import org.junit.Test;
-
-import java.io.File;
-import java.io.FileReader;
-import java.util.Properties;
-
-import static org.junit.Assert.assertNotNull;
-import static org.junit.Assert.assertTrue;
-
-/**
- * @author Simon Thoresen Hult
- */
-public class ExportPackagesTestCase {
-
- @Test
- public void requireThatPropertiesAreWritten() throws Exception {
- File file = new File("target", ExportPackages.PROPERTIES_FILE);
- file.deleteOnExit();
- ExportPackages.main(new String[] { file.getAbsolutePath() });
- assertTrue(file.exists());
- Properties props = new Properties();
- try (FileReader reader = new FileReader(file)) {
- props.load(reader);
- assertNotNull(props.getProperty(ExportPackages.EXPORT_PACKAGES));
- }
- }
-}