Package test.skipex

Source Code of test.skipex.TestSkippedExceptionTest

package test.skipex;

import org.testng.SkipException;
import org.testng.TimeBombSkipException;
import org.testng.annotations.Test;


/**
* This class/interface
*/
public class TestSkippedExceptionTest {
  @Test
  public void genericSkipException() {
    throw new SkipException("genericSkipException is skipped for now");
  }

  @Test
  public void timedSkipException() {
    throw new TimeBombSkipException("timedSkipException is time bombed", "2007/04/10");
  }
}
TOP

Related Classes of test.skipex.TestSkippedExceptionTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.