HomeSort by relevance Sort by last modified time
    Searched refs:methodNames (Results 1 - 25 of 269) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/testng/src/test/java/test/annotationtransformer/
MyTransformer.java 13 private final List<String> methodNames = new ArrayList<>();
31 methodNames.add(testMethod.getName());
36 return methodNames;
  /external/vogar/src/vogar/target/junit/
JUnitRunnerFactory.java 55 Set<String> methodNames = new LinkedHashSet<>();
57 methodNames.add(qualification);
59 Collections.addAll(methodNames, args);
63 tests = Junit3.classToVogarTests(testClass, methodNames);
65 tests = Junit4.classToVogarTests(testClass, methodNames);
Junit3.java 96 * @param methodNames if non-empty, this is the list of test method names.
98 static List<VogarTest> classToVogarTests(Class<?> testClass, Collection<String> methodNames) {
100 getSuiteMethods(result, testClass, methodNames);
115 List<VogarTest> out, Class<?> testClass, Collection<String> methodNames) {
123 if (methodNames.isEmpty()) {
135 for (String methodName : methodNames) {
166 getTestCaseTest(out, (TestCase) test, methodNames);
168 getTestSuiteTests(out, (TestSuite) test, methodNames);
182 Collection<String> methodNames) {
185 getSuiteMethods(out, (Class<?>) testsOrSuite, methodNames);
    [all...]
Junit4.java 49 * @param methodNames if non-empty, this is the list of test method names.
51 static List<VogarTest> classToVogarTests(Class<?> testClass, Collection<String> methodNames) {
53 getSuiteMethods(result, testClass, methodNames);
58 List<VogarTest> out, Class<?> testClass, Collection<String> methodNames) {
64 if (methodNames.isEmpty()) {
80 for (String methodName : methodNames) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
MethodsTest.java 80 String methodNames[] = {
111 int expectedMetodsNumber = methodNames.length;
130 if ( ! methodNames[k].equals(returnedMethodName)) {
190 logWriter.println("## Method name = " + methodNames[k]);
194 " name = " + methodNames[k];
MethodsWithGenericTest.java 81 String methodNames[] = {
120 int expectedMetodsNumber = methodNames.length;
140 if ( ! methodNames[k].equals(returnedMethodName)) {
217 logWriter.println("## Method name = " + methodNames[k]);
221 " name = " + methodNames[k];
  /external/testng/src/main/java/org/testng/xml/
SuiteGenerator.java 59 Collection<String> methodNames, Collection<String> groupNames,
69 return new LaunchSuite.MethodsSuite(projectName, classNames.iterator().next(), methodNames,
LaunchSuite.java 238 * @param methodNames
245 final Collection<String> methodNames,
252 m_methodNames = methodNames;
325 Collection<String> methodNames= sanitize(entry.getValue());
326 if ((null != methodNames) && (methodNames.size() > 0)) {
331 for (String methodName : methodNames) {
  /external/testng/src/test/java/test/
SimpleBaseTest.java 100 protected void verifyPassedTests(TestListenerAdapter tla, String... methodNames) {
102 Assert.assertEquals(tla.getPassedTests().size(), methodNames.length);
106 Assert.assertEquals(it.next().getName(), methodNames[i++]);
  /external/testng/src/main/java/org/testng/reporters/
FailedReporter.java 215 List<XmlInclude> methodNames= Lists.newArrayList(methodList.size());
218 methodNames.add(new XmlInclude(m.getMethod().getName(), m.getFailedInvocationNumbers(),
221 xmlClass.setIncludedMethods(methodNames);
SuiteHTMLReporter.java 521 StringBuffer methodNames = new StringBuffer();
527 methodNames.append(tm.toString()).append("<br/>");
529 sb.append("<td>" + methodNames.toString() + "</td></tr>\n");
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
ModelClass.java 391 String[] methodNames = {
396 for (String methodName : methodNames) {
459 String[] methodNames = {
464 for (String methodName : methodNames) {
  /external/v8/test/mjsunit/es6/
string-html.js 174 var methodNames = [
189 for (var name of methodNames) {
  /external/guice/core/test/com/google/inject/spi/
InjectionPointTest.java 301 String... methodNames) {
308 assertEquals(points.toString(), ImmutableSet.copyOf(methodNames), methods);
  /external/jetty/lib/
javax.servlet-3.0.0.v201112011016.jar 
  /prebuilts/devtools/tools/lib/
monkeyrunner.jar 
easymock-3.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/monkeyrunner/24.4.0-beta6/
monkeyrunner-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/monkeyrunner/24.5.0/
monkeyrunner-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/monkeyrunner/25.0.0-alpha1/
monkeyrunner-25.0.0-alpha1.jar 
  /external/chromium-trace/catapult/third_party/polymer/components/webcomponentsjs/
ShadowDOM.js     [all...]
webcomponents.js     [all...]
  /prebuilts/tools/common/easymock-tools/
easymock-3.1.jar 
  /prebuilts/tools/common/m2/repository/org/easymock/easymock/3.1/
easymock-3.1.jar 
  /prebuilts/tools/common/m2/repository/org/easymock/easymock/3.3/
easymock-3.3.jar 

Completed in 459 milliseconds

1 2 3 4 5 6 7 8 91011