OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TestNGProperty
(Results
1 - 2
of
2
) sorted by null
/external/testng/src/main/java/org/testng/internal/
Constants.java
33
private static final
TestNGProperty
[] COMMAND_LINE_PARAMETERS = {
34
new
TestNGProperty
("-d", PROP_OUTPUT_DIR, "Directory where the result files will be created.", "test-output"),
37
private static final Map<String,
TestNGProperty
> m_propertiesByName = Maps.newHashMap();
43
for (
TestNGProperty
element : COMMAND_LINE_PARAMETERS) {
48
private static
TestNGProperty
getProperty(String propertyName) {
49
TestNGProperty
result = m_propertiesByName.get(propertyName);
56
TestNGProperty
r= getProperty(propertyName);
65
TestNGProperty
p = getProperty(propertyName);
73
TestNGProperty
p = getProperty(propertyName);
81
TestNGProperty
p = getProperty(propertyName)
[
all
...]
TestNGProperty.java
10
public class
TestNGProperty
{
16
public
TestNGProperty
(String clName, String name, String doc, String def) {
20
public
TestNGProperty
(String name, String doc, String def) {
Completed in 7253 milliseconds