diff options
author | Stefan Bodewig <bodewig@apache.org> | 2018-10-28 20:35:38 +0100 |
---|---|---|
committer | Stefan Bodewig <bodewig@apache.org> | 2018-10-28 20:35:38 +0100 |
commit | d7bafaa19a66a17333119711dfdb098c979285e0 (patch) | |
tree | 150f1969b2260fa38b0595f3de391d43f7e8aa02 /src/main/org | |
parent | 9558adefe74c453a1183ef8c93ec6b6e37d0f26c (diff) | |
download | ant-d7bafaa19a66a17333119711dfdb098c979285e0.tar.gz |
move test constants into a class defined in the test tree
Diffstat (limited to 'src/main/org')
-rw-r--r-- | src/main/org/apache/tools/ant/MagicNames.java | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/src/main/org/apache/tools/ant/MagicNames.java b/src/main/org/apache/tools/ant/MagicNames.java index 2479bce6e..074f4131e 100644 --- a/src/main/org/apache/tools/ant/MagicNames.java +++ b/src/main/org/apache/tools/ant/MagicNames.java @@ -322,40 +322,5 @@ public final class MagicNames { */ public static final String TSTAMP_NOW_ISO = "ant.tstamp.now.iso"; - /** - * Magic property that makes unit tests based on BuildFileTest - * or BuildFileRule ignore externally set basedir - * (typically by Surefire/Failsafe) - * - * Value: {@value} - * @since Ant 1.10.6 - */ - public static final String TEST_BASEDIR_IGNORE = "ant.test.basedir.ignore"; - - /** - * Magic property that makes unit tests based on BuildFileTest - * or BuildFileRule use build files in alternative locations - * (relative to "root" directory) - * - * Value: {@value} - * @since Ant 1.10.6 - */ - public static final String TEST_ROOT_DIRECTORY = "root"; - - /** - * Property for ant process ID set in unit tests by BuildFileTest - * or BuildFileRule. - * - * Value: {@value} - */ - public static final String TEST_PROCESS_ID = "ant.processid"; - - /** - * Property for ant thread name set in unit tests by BuildFileTest - * or BuildFileRule. - * - * Value: {@value} - */ - public static final String TEST_THREAD_NAME = "ant.threadname"; } |