Home
last modified time | relevance | path

Searched refs:ListMultiMap (Results 1 – 12 of 12) sorted by relevance

/external/testng/src/main/java/org/testng/xml/
DParameters.java3 import org.testng.collections.ListMultiMap;
14 private ListMultiMap<String, String> m_localParameters = Maps.newListMultiMap();
15 private ListMultiMap<String, String> m_allParameters = Maps.newListMultiMap();
/external/testng/src/main/java/org/testng/
DDependencyMap.java3 import org.testng.collections.ListMultiMap;
19 private ListMultiMap<String, ITestNGMethod> m_dependencies = Maps.newListMultiMap();
20 private ListMultiMap<String, ITestNGMethod> m_groups = Maps.newListMultiMap();
DTestRunner.java19 import org.testng.collections.ListMultiMap;
905 ListMultiMap<Object, ITestNGMethod> lmm = Maps.newListMultiMap(); in createInstanceBasedParallelWorkers()
1095 ListMultiMap<ITestNGMethod, ITestNGMethod> classDependencies in createDynamicGraph()
1107 ListMultiMap<ITestNGMethod, ITestNGMethod> instanceDependencies in createDynamicGraph()
1121 private ListMultiMap<ITestNGMethod, ITestNGMethod> createInstanceDependencies( in createInstanceDependencies()
1124 ListMultiMap<Object, ITestNGMethod> instanceMap = Maps.newListMultiMap(); in createInstanceDependencies()
1129 ListMultiMap<ITestNGMethod, ITestNGMethod> result = Maps.newListMultiMap(); in createInstanceDependencies()
1152 private ListMultiMap<ITestNGMethod, ITestNGMethod> createClassDependencies( in createClassDependencies()
1182 ListMultiMap<String, ITestNGMethod> methodsFromClass = Maps.newListMultiMap(); in createClassDependencies()
1187 ListMultiMap<ITestNGMethod, ITestNGMethod> result = Maps.newListMultiMap(); in createClassDependencies()
[all …]
/external/testng/src/main/java/org/testng/collections/
DListMultiMap.java9 public class ListMultiMap<K, V> extends MultiMap<K, V, List<V>> { class
17 public static <K, V> ListMultiMap<K, V> create() { in create()
DMaps.java19 public static <K, V> ListMultiMap<K, V> newListMultiMap() { in newListMultiMap()
20 return new ListMultiMap<>(); in newListMultiMap()
/external/testng/src/main/java/org/testng/internal/
DDynamicGraph.java3 import org.testng.collections.ListMultiMap;
27 private ListMultiMap<T, T> m_dependedUpon = Maps.newListMultiMap();
28 private ListMultiMap<T, T> m_dependingOn = Maps.newListMultiMap();
211 public ListMultiMap<T, T> getEdges() { in getEdges()
DXmlMethodSelector.java15 import org.testng.collections.ListMultiMap;
39 private ListMultiMap<String, XmlInclude> m_includedMethods = Maps.newListMultiMap();
/external/testng/src/main/java/org/testng/reporters/jq/
DResultsByClass.java4 import org.testng.collections.ListMultiMap;
23 private ListMultiMap<Class<?>, ITestResult> m_results = Maps.newListMultiMap();
DModel.java8 import org.testng.collections.ListMultiMap;
21 private ListMultiMap<ISuite, ITestResult> m_model = Maps.newListMultiMap();
/external/testng/src/main/java/org/testng/reporters/
DJUnitReportReporter.java9 import org.testng.collections.ListMultiMap;
38 ListMultiMap<Object, ITestResult> befores = Maps.newListMultiMap(); in generateReport()
39 ListMultiMap<Object, ITestResult> afters = Maps.newListMultiMap(); in generateReport()
189 private long getNextConfiguration(ListMultiMap<Object, ITestResult> configurations, in getNextConfiguration()
DJqReporter.java9 import org.testng.collections.ListMultiMap;
135 ListMultiMap<Class<?>, ITestResult> map = Maps.newListMultiMap(); in generateTests()
/external/testng/src/main/java/org/testng/xml/dom/
DXDom.java9 import org.testng.collections.ListMultiMap;
80 ListMultiMap<String, Object> children = Maps.newListMultiMap(); in populateChildren()