TAMAYA-318 Merged changes.
Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/commit/13e43a49 Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/tree/13e43a49 Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/diff/13e43a49 Branch: refs/heads/master Commit: 13e43a49eef761e07afddf5a5271be4883b6daaf Parents: c074073 Author: Anatole Tresch <[email protected]> Authored: Tue Nov 14 10:33:10 2017 +0100 Committer: Anatole Tresch <[email protected]> Committed: Tue Nov 14 10:33:10 2017 +0100 ---------------------------------------------------------------------- .../microprofile/MicroprofileAdapterTest.java | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/13e43a49/modules/microprofile/src/test/java/org/apache/tamaya/microprofile/MicroprofileAdapterTest.java ---------------------------------------------------------------------- diff --git a/modules/microprofile/src/test/java/org/apache/tamaya/microprofile/MicroprofileAdapterTest.java b/modules/microprofile/src/test/java/org/apache/tamaya/microprofile/MicroprofileAdapterTest.java index 8fea044..a8e8488 100644 --- a/modules/microprofile/src/test/java/org/apache/tamaya/microprofile/MicroprofileAdapterTest.java +++ b/modules/microprofile/src/test/java/org/apache/tamaya/microprofile/MicroprofileAdapterTest.java @@ -18,13 +18,12 @@ */ package org.apache.tamaya.microprofile; -import org.apache.tamaya.Configuration; -import org.apache.tamaya.ConfigurationProvider; +import org.apache.tamaya.*; +import org.apache.tamaya.spi.ConfigurationContext; import org.apache.tamaya.spi.PropertyConverter; import org.apache.tamaya.spi.PropertySource; import org.apache.tamaya.spi.PropertyValue; import org.apache.tamaya.spisupport.propertysource.BuildablePropertySource; -import org.apache.tamaya.spisupport.BuildablePropertySource; import org.assertj.core.api.Assertions; import org.eclipse.microprofile.config.Config; import org.eclipse.microprofile.config.ConfigProvider; @@ -33,10 +32,7 @@ import org.eclipse.microprofile.config.spi.ConfigSource; import org.eclipse.microprofile.config.spi.Converter; import org.junit.Test; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import java.util.*; import static org.junit.Assert.*; @@ -242,16 +238,6 @@ public class MicroprofileAdapterTest { } @Override - public Configuration with(ConfigOperator operator) { - throw new RuntimeException("Not implemented yet!"); - } - - @Override - public <T> T query(ConfigQuery<T> query) { - throw new RuntimeException("Not implemented yet!"); - } - - @Override public ConfigurationContext getContext() { throw new RuntimeException("Not implemented yet!"); }
