You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by st...@apache.org on 2014/11/20 22:26:27 UTC

deltaspike git commit: DELTASPIKE-785 add more info and make fields public

Repository: deltaspike
Updated Branches:
  refs/heads/master dc9e56a3b -> 9d59276be


DELTASPIKE-785 add more info and make fields public


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/9d59276b
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/9d59276b
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/9d59276b

Branch: refs/heads/master
Commit: 9d59276bec77c229a287808870ba9396ef0a757d
Parents: dc9e56a
Author: Mark Struberg <st...@apache.org>
Authored: Thu Nov 20 22:25:48 2014 +0100
Committer: Mark Struberg <st...@apache.org>
Committed: Thu Nov 20 22:25:48 2014 +0100

----------------------------------------------------------------------
 .../testcontrol/api/junit/CdiTestSuiteRunner.java           | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/9d59276b/deltaspike/modules/test-control/api/src/main/java/org/apache/deltaspike/testcontrol/api/junit/CdiTestSuiteRunner.java
----------------------------------------------------------------------
diff --git a/deltaspike/modules/test-control/api/src/main/java/org/apache/deltaspike/testcontrol/api/junit/CdiTestSuiteRunner.java b/deltaspike/modules/test-control/api/src/main/java/org/apache/deltaspike/testcontrol/api/junit/CdiTestSuiteRunner.java
index 8f666f5..c36dea7 100644
--- a/deltaspike/modules/test-control/api/src/main/java/org/apache/deltaspike/testcontrol/api/junit/CdiTestSuiteRunner.java
+++ b/deltaspike/modules/test-control/api/src/main/java/org/apache/deltaspike/testcontrol/api/junit/CdiTestSuiteRunner.java
@@ -44,10 +44,15 @@ public class CdiTestSuiteRunner extends Suite
      * e.g.:
      * deltaspike.testcontrol.test-container.config-file=META-INF/dsTestContainerBootConfig.properties
      */
-    private static final String CUSTOM_TEST_CONTAINER_CONFIG_FILE_KEY =
+    public static final String CUSTOM_TEST_CONTAINER_CONFIG_FILE_KEY =
         "deltaspike.testcontrol.test-container.config-file";
 
-    private static final String DEFAULT_TEST_CONTAINER_CONFIG_FILE_NAME =
+    /**
+     * Default resource location of the property file which gets used
+     * for the container bootstrap.
+     * This value can be overridden by using {@link #CUSTOM_TEST_CONTAINER_CONFIG_FILE_KEY}
+     */
+    public static final String DEFAULT_TEST_CONTAINER_CONFIG_FILE_NAME =
         "META-INF/apache-deltaspike_test-container";
 
     private static final boolean STOP_CONTAINER;