FailedInvocationCount.java :  » Testing » testng » test » invocationcount » Java Open Source

Java Open Source » Testing » testng 
testng » test » invocationcount » FailedInvocationCount.java
package test.invocationcount;

import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;

public class FailedInvocationCount {
  int m_count;
  
  @BeforeClass
  public void setUp() {
    m_count = 0;
  }

  @Test(invocationCount = 10)
  public void f() {
    if (m_count++ > 3) {
      throw new RuntimeException();
    }
  }
  
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.