This is an automated email from the ASF dual-hosted git repository. pottlinger pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-tamaya-sandbox.git
commit a91de28602e712544abd22339f144397a5a39d1e Author: Hugo Hirsch <[email protected]> AuthorDate: Sun May 12 00:33:14 2019 +0200 TAMAYA-277: Leave empty test skeleton --- .../org/apache/tamaya/sysprops/ConfiguredSystemPropertiesTest.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/configured-sysprops/src/test/java/org/apache/tamaya/sysprops/ConfiguredSystemPropertiesTest.java b/configured-sysprops/src/test/java/org/apache/tamaya/sysprops/ConfiguredSystemPropertiesTest.java index 179496d..878fbf3 100644 --- a/configured-sysprops/src/test/java/org/apache/tamaya/sysprops/ConfiguredSystemPropertiesTest.java +++ b/configured-sysprops/src/test/java/org/apache/tamaya/sysprops/ConfiguredSystemPropertiesTest.java @@ -18,6 +18,13 @@ */ package org.apache.tamaya.sysprops; +import org.junit.Test; + public class ConfiguredSystemPropertiesTest { + @Test + public void objectCreation() { + System.setProperty("TamayaUnderTest", "true"); + } + } \ No newline at end of file
