/external/testng/src/test/java/test/mannotation/ |
MTest1.java | 23 timeOut = 42, invocationCount = 43, successPercentage = 44, 31 timeOut = 242, invocationCount = 243, successPercentage = 62, 39 timeOut = 142, invocationCount = 143, successPercentage = 61,
|
/external/testng/src/test/java/test/configuration/ |
ConfigurationGroupInvocationCountSampleTest.java | 19 @Test(groups = {"twice"}, invocationCount = 3)
|
ConfigurationGroupBothSampleTest.java | 25 @Test(groups={"twice"}, dataProvider="MyData", invocationCount = 2, threadPoolSize=2)
|
/external/testng/src/test/java/test/dataprovider/ |
ParallelDataProvider2Test.java | 27 @Test(groups = "cme", dataProvider = "provide", invocationCount = 2, threadPoolSize = 2)
|
/external/testng/src/test/java/test/testng387/ |
TestNG387.java | 14 @Test(invocationCount = 500)
|
/art/test/545-tracing-and-jit/src/ |
Main.java | 68 public void ensureCaller(boolean warmup, int invocationCount) throws Exception { 69 doLoadsOfStuff(warmup, invocationCount); 76 public void doLoadsOfStuff(boolean warmup, int invocationCount) throws Exception { 79 if (invocationCount < NUMBER_OF_INVOCATIONS) { 80 doLoadsOfStuff(warmup, ++invocationCount); 86 if (invocationCount == 0) { 94 if (invocationCount < NUMBER_OF_INVOCATIONS) { 95 doLoadsOfStuff(warmup, ++invocationCount);
|
/external/testng/src/main/java/org/testng/annotations/ |
ITestAnnotation.java | 22 * from multiple threads as specified by invocationCount. 23 * Note: this attribute is ignored if invocationCount is not specified
|
Test.java | 67 * method should take. This annotation will be ignored if the attribute invocationCount 76 public int invocationCount() default 1; 80 * from multiple threads as specified by invocationCount. 81 * Note: this attribute is ignored if invocationCount is not specified 166 * If true and invocationCount is specified with a value > 1,
|
AfterMethod.java | 67 * If true and the @Test method that was just run has an invocationCount > 1, this
|
BeforeMethod.java | 67 * If true and the @Test method about to be run has an invocationCount > 1, this
|
/external/testng/src/test/java/test/ |
InvocationAndSuccessPercentageTest.java | 6 * This class tests invocationCount and successPercentage 13 public void invocationCount() {
|
/external/testng/src/main/java/org/testng/internal/ |
TestMethodWithDataProviderMethodWorker.java | 43 int invocationCount, int failureCount, ITestResultNotifier notifier) { 58 m_invocationCount = invocationCount;
|
ConfigurationGroupMethods.java | 63 int invocationCount= method.getCurrentInvocationCount();
64 if(invocationCount < (method.getInvocationCount() * method.getParameterInvocationCount())) {
|
Invoker.java | 587 // - firstTimeOnly is set, and we are reaching at the first invocationCount 705 // - lastTimeOnly is set, and we are reaching the last invocationCount 753 * the current invocationCount yet 776 // If we have invocationCount > 1, set the boolean if we are about to [all...] |
/external/testng/src/main/java/org/testng/internal/annotations/ |
TestAnnotation.java | 79 public void setInvocationCount(int invocationCount) {
80 m_invocationCount = invocationCount;
|
/external/testng/src/test/java/test/invocationcount/ |
FailedInvocationCountTest.java | 1 package test.invocationcount;
|
FirstAndLastTimeTest.java | 1 package test.invocationcount;
|
/external/proguard/src/proguard/optimize/info/ |
MethodOptimizationInfo.java | 45 private int invocationCount = 0; 196 invocationCount++; 202 return invocationCount;
|
/external/testng/src/main/java/org/testng/remote/strprotocol/ |
TestResultMessage.java | 52 int invocationCount, 67 invocationCount, 141 int invocationCount, 154 m_invocationCount = invocationCount;
|
/external/testng/ |
TODO.txt | 26 * Multi-threading for invocationCount and maybe for <test> too 53 * If a method with invocationCount fails, don't run the others 78 * Implement invocationCount and successPercentage
|
ANNOUNCEMENT.txt | 76 * invocationCount and successPercentage, which I described in a previous entry (http://beust.com/weblog/archives/000236.html), and which allow you to invoke a test method a certain number of times while allowing some of these invocations to fail. If the number of failures is under a certain threshold, the test is still considered a success.
|
/external/testng/src/test/resources/ |
testng.yaml | 188 - name: InvocationCount 192 - test.invocationcount.FailedInvocationCountTest 193 - test.invocationcount.FirstAndLastTimeTest
|
/external/testng/src/main/java/org/testng/ |
ITestNGMethod.java | 227 * The time under which all invocationCount methods need to complete by.
|
/external/testng/src/test/java/test/annotationtransformer/ |
AnnotationTransformerTest.java | 33 * annotation invocationCount is correctly used.
|
/external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/ |
FactoryProvider2Test.java | 755 final AtomicInteger invocationCount = new AtomicInteger(); 760 invocationCount.incrementAndGet(); 777 assertEquals(0, invocationCount.get()); 779 assertEquals(1, invocationCount.get()); [all...] |