Package com.google.caliper.api

Examples of com.google.caliper.api.SkipThisScenarioException


      case 5:
        return fiveArguments(reps);
      case 6:
        return sixArguments(reps);
      default:
        throw new SkipThisScenarioException();
    }
  }
View Full Code Here


//    System.out.println("I should not do this.");
  }

  @BeforeExperiment void setUp() throws Exception {
    if (string.equals("abc") && number == 1) {
      throw new SkipThisScenarioException();
    }
  }
View Full Code Here

TOP

Related Classes of com.google.caliper.api.SkipThisScenarioException

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.