OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:m_includedGroups
(Results
1 - 6
of
6
) sorted by null
/external/testng/src/main/java/org/testng/internal/
XmlMethodSelector.java
33
private Map<String, String>
m_includedGroups
= Maps.newHashMap();
68
Map<String, String> includedGroups =
m_includedGroups
;
108
boolean isIncludedInGroups = isIncluded(groups,
m_includedGroups
.values());
271
return
m_includedGroups
;
285
m_includedGroups
= includedGroups;
343
String[] groups =
m_includedGroups
.keySet().toArray(new String[
m_includedGroups
.size()]);
360
//
m_includedGroups
is being added implicitly by TestNG so that if someone
363
if (
m_includedGroups
.size() > 0) {
367
+ (
m_includedGroups
.containsKey(g)
[
all
...]
/external/testng/src/main/java/org/testng/xml/
XmlTest.java
36
private List<String>
m_includedGroups
= Lists.newArrayList();
134
result = Lists.newArrayList(
m_includedGroups
);
208
m_includedGroups
= g;
229
m_includedGroups
.add(g);
499
if (!m_metaGroups.isEmpty() || !
m_includedGroups
.isEmpty() || !m_excludedGroups.isEmpty()
524
if (!
m_includedGroups
.isEmpty() || !m_excludedGroups.isEmpty()) {
527
for (String includeGroupName:
m_includedGroups
) {
605
for (String g :
m_includedGroups
) {
741
+ ((
m_includedGroups
== null) ? 0 :
m_includedGroups
.hashCode())
[
all
...]
XmlSuite.java
141
private List<String>
m_includedGroups
= Lists.newArrayList();
969
return
m_includedGroups
;
974
m_includedGroups
.add(g);
981
m_includedGroups
= g;
/external/testng/src/main/java/org/testng/
TestNGAntTask.java
144
protected String
m_includedGroups
;
403
m_includedGroups
= groups;
550
addStringIfNotBlank(argv, CommandLineArgs.GROUPS,
m_includedGroups
);
878
if((null !=
m_includedGroups
) && (m_classFilesets.size() == 0 && suiteCount == 0)) {
[
all
...]
TestNG.java
130
private String[]
m_includedGroups
;
416
result.setPostProcessor(new OverrideProcessor(
m_includedGroups
, m_excludedGroups));
669
m_includedGroups
= Utils.split(groups, ",");
868
boolean hasIncludedGroups = null !=
m_includedGroups
&&
m_includedGroups
.length > 0;
876
t.setIncludedGroups(Arrays.asList(
m_includedGroups
));
[
all
...]
/prebuilts/tools/common/m2/repository/org/testng/testng/6.9.10/
testng-6.9.10.jar
Completed in 45 milliseconds