aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core_test
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@yahooinc.com>2023-09-04 11:50:35 +0200
committerBjørn Christian Seime <bjorncs@yahooinc.com>2023-09-04 14:33:30 +0200
commit0273b5ab2c83b02678617e9dc7e969080c044c9c (patch)
treeeffec8747a2a13650ab632eebcbf41f3e4af40f9 /jdisc_core_test
parentc28b8521f0b652bbe23c1ab97ad85a98d13b27de (diff)
Remove dead code and handle API changes
Diffstat (limited to 'jdisc_core_test')
-rw-r--r--jdisc_core_test/integration_test/src/test/java/com/yahoo/jdisc/core/OsgiLogManagerIntegrationTest.java30
1 files changed, 0 insertions, 30 deletions
diff --git a/jdisc_core_test/integration_test/src/test/java/com/yahoo/jdisc/core/OsgiLogManagerIntegrationTest.java b/jdisc_core_test/integration_test/src/test/java/com/yahoo/jdisc/core/OsgiLogManagerIntegrationTest.java
deleted file mode 100644
index 629bef6ded3..00000000000
--- a/jdisc_core_test/integration_test/src/test/java/com/yahoo/jdisc/core/OsgiLogManagerIntegrationTest.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 org.mockito.Mockito;
-import org.osgi.framework.BundleContext;
-
-import java.util.logging.Level;
-import java.util.logging.Logger;
-
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertNotNull;
-
-
-/**
- * @author Simon Thoresen Hult
- */
-public class OsgiLogManagerIntegrationTest {
-
- @Test
- public void requireThatRootLoggerLevelIsNotModifiedIfLoggerConfigIsGiven() {
- Logger logger = Logger.getLogger("");
- logger.setLevel(Level.WARNING);
-
- OsgiLogManager.newInstance().install(Mockito.mock(BundleContext.class));
-
- assertNotNull(System.getProperty("java.util.logging.config.file"));
- assertEquals(Level.WARNING, logger.getLevel());
- }
-}