OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:m_excludedGroups
(Results
1 - 7
of
7
) sorted by null
/external/testng/src/main/java/org/testng/internal/
OverrideProcessor.java
18
private String[]
m_excludedGroups
;
22
m_excludedGroups
= excludedGroups;
35
if (
m_excludedGroups
!= null &&
m_excludedGroups
.length > 0) {
38
t.getExcludedGroups().addAll(Arrays.asList(
m_excludedGroups
));
XmlMethodSelector.java
34
private Map<String, String>
m_excludedGroups
= Maps.newHashMap();
69
Map<String, String> excludedGroups =
m_excludedGroups
;
109
boolean isExcludedInGroups = isExcluded(groups,
m_excludedGroups
.values());
264
return
m_excludedGroups
;
278
m_excludedGroups
= excludedGroups;
/external/testng/src/main/java/org/testng/xml/
XmlTest.java
37
private List<String>
m_excludedGroups
= Lists.newArrayList();
215
m_excludedGroups
= g;
223
List<String> result = new ArrayList(
m_excludedGroups
);
233
m_excludedGroups
.add(g);
499
if (!m_metaGroups.isEmpty() || !m_includedGroups.isEmpty() || !
m_excludedGroups
.isEmpty()
524
if (!m_includedGroups.isEmpty() || !
m_excludedGroups
.isEmpty()) {
534
for (String excludeGroupName:
m_excludedGroups
) {
611
for (String g :
m_excludedGroups
) {
735
+ ((
m_excludedGroups
== null) ? 0 :
m_excludedGroups
.hashCode())
[
all
...]
XmlSuite.java
142
private List<String>
m_excludedGroups
= Lists.newArrayList();
988
m_excludedGroups
= g;
999
return
m_excludedGroups
;
1004
m_excludedGroups
.add(g);
/external/testng/src/main/java/org/testng/
TestNGAntTask.java
145
protected String
m_excludedGroups
;
407
m_excludedGroups
= groups;
551
addStringIfNotBlank(argv, CommandLineArgs.EXCLUDED_GROUPS,
m_excludedGroups
);
[
all
...]
TestNG.java
131
private String[]
m_excludedGroups
;
416
result.setPostProcessor(new OverrideProcessor(m_includedGroups,
m_excludedGroups
));
659
m_excludedGroups
= Utils.split(groups, ",");
869
boolean hasExcludedGroups = null !=
m_excludedGroups
&&
m_excludedGroups
.length > 0;
879
t.setExcludedGroups(Arrays.asList(
m_excludedGroups
));
[
all
...]
/prebuilts/tools/common/m2/repository/org/testng/testng/6.9.10/
testng-6.9.10.jar
Completed in 56 milliseconds