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

1 2

  /external/testng/src/test/java/test/testng285/
TestNG285Test.java 14 setParallel(XmlSuite.ParallelMode.METHODS);
  /dalvik/dx/tests/131-perf/
run 61 # Number of methods per class
62 METHODS=6
71 java -classpath . ClassGen $first $TEST_SIZE $FIELDS $METHODS || exit 1
  /external/testng/src/test/java/test/configuration/
BeforeClassThreadTest.java 15 tng.setParallel(XmlSuite.ParallelMode.METHODS);
  /external/testng/src/test/java/test/priority/
PriorityTest.java 14 if (parallel) tng.setParallel(XmlSuite.ParallelMode.METHODS);
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
APIStatusConsistencyChecker.java 58 // Methods that should have same API status with a containing class
59 static final String[][] METHODS = {
81 // Walk through methods
96 for (String[] method : METHODS) {
  /external/testng/src/test/java/test/thread/
FactoryTest.java 14 * for the two methods invoked on B.
21 * In parallel mode "methods", we should have as many thread id's
22 * as there are test methods on B (2).
26 runTest(XmlSuite.ParallelMode.METHODS, 2);
TrueParallelTest.java 14 * Attempt to make sure that we are truly running methods in parallel. The best I can think
27 s.setParallel(XmlSuite.ParallelMode.METHODS);
SequentialTest.java 64 setParallel(XmlSuite.ParallelMode.METHODS);
MultiThreadedDependentTest.java 17 * Test that classes with dependent methods are still run in different threads
25 * methods are using these n threads.
27 private void assertOrder(List<String> methods) {
32 Assert.assertEquals(methods.size(), size);
34 Assert.assertTrue(methods.contains(em));
37 for (String m : methods) {
74 tng.setParallel(XmlSuite.ParallelMode.METHODS);
ParallelTestTest.java 32 verifyExpected(XmlSuite.ParallelMode.METHODS, 4);
  /external/testng/src/main/java/org/testng/
CommandLineArgs.java 60 @Parameter(names = PARALLEL, description = "Parallel mode (methods, tests or classes)")
137 public static final String METHODS = "-methods";
138 @Parameter(names = METHODS, description = "Comma separated of test methods",
  /external/icu/icu4j/perf-tests/
perftests.pl 24 # Methods to be tested. Each pair represents a test method and
26 my @METHODS = (
79 for my $methodPair (@METHODS) {
124 for my $methodPair (@METHODS) {
converterperf.pl 19 # Methods to be tested. Each pair represents a test method and
21 my @METHODS = (
104 for my $methodPair (@METHODS) {
dateformatperf.pl 19 # Methods to be tested. Each pair represents a test method and
21 my @METHODS = (
91 for my $methodPair (@METHODS) {
decimalformatperf.pl 19 # Methods to be tested. Each pair represents a test method and
21 my @METHODS = (
87 for my $methodPair (@METHODS) {
normperf.pl 19 # Methods to be tested. Each pair represents a test method and
21 my @METHODS = (
140 for my $methodPair (@METHODS) {
ucharacterperf.pl 19 # Methods to be tested. Each pair represents a test method and
21 my @METHODS = (['JDKDigit', 'Digit'],
88 for my $methodPair (@METHODS) {
unicodesetperf.pl 19 # Methods to be tested. Each pair represents a test method and
21 my @METHODS = (
78 for my $methodPair (@METHODS) {
  /external/testng/src/test/java/test/methodinterceptors/
MethodInterceptorTest.java 66 // tng.setParallel("methods");
116 tng.setParallel(XmlSuite.ParallelMode.METHODS);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
TestThread.java 40 * object are choreographed via the various methods on this class.
220 METHODS: for (Method method : lockLikeObject.getClass().getMethods()) {
225 continue METHODS;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_MimeWriter.py 21 METHODS
125 METHODS
  /external/antlr/runtime/Perl5/lib/ANTLR/
Runtime.pm 37 =head1 SUBROUTINES/METHODS
40 These normally consist of either subroutines that may be exported, or methods
46 context to help them understand the methods that are subsequently described.
  /external/python/cpython2/Lib/test/
test_MimeWriter.py 21 METHODS
125 METHODS
  /external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/
HttpURLConnectionImpl.java 83 private static final Set<String> METHODS = new LinkedHashSet<>(
622 if (!METHODS.contains(method)) {
623 throw new ProtocolException("Expected one of " + METHODS + " but was " + method);
  /external/okhttp/repackaged/okhttp-urlconnection/src/main/java/com/android/okhttp/internal/huc/
HttpURLConnectionImpl.java 85 private static final Set<String> METHODS = new LinkedHashSet<>(
626 if (!METHODS.contains(method)) {
627 throw new ProtocolException("Expected one of " + METHODS + " but was " + method);

Completed in 353 milliseconds

1 2