Package com.crawljax.core.ExitNotifier

Examples of com.crawljax.core.ExitNotifier.ExitStatus


  @Test(timeout = 2000)
  public void whenMaximumStatesReachedItExists() throws InterruptedException {
    notifier = new ExitNotifier(2);
    notifier.incrementNumberOfStates();
    notifier.incrementNumberOfStates();
    ExitStatus reason = notifier.awaitTermination();
    assertThat(reason, is(ExitStatus.MAX_STATES));

  }
View Full Code Here

TOP

Related Classes of com.crawljax.core.ExitNotifier.ExitStatus

Copyright © 2018 www.massapicom. 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.