本文整理汇总了Java中org.jbehave.core.junit.JUnitStory类的典型用法代码示例。如果您正苦于以下问题:Java JUnitStory类的具体用法?Java JUnitStory怎么用?Java JUnitStory使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
JUnitStory类属于org.jbehave.core.junit包,在下文中一共展示了JUnitStory类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: ArquillianJbehaveRunner
import org.jbehave.core.junit.JUnitStory; //导入依赖的package包/类
public ArquillianJbehaveRunner(Class<? extends ConfigurableEmbedder> testClass) throws Throwable {
super(CopyClass.mergeClassesToNewClassWithBase(testClass, ((ArquillianInstanceStepsFactory) testClass
.newInstance().stepsFactory()).stepsTypes().toArray(new Class<?>[] {})));
long startTime = System.currentTimeMillis();
if (firstTime) {
ArquillianJbehaveRunner.testClassInstance = this.getTestClass().getJavaClass().newInstance();
}
configurableEmbedder = testClass.newInstance();
configuredEmbedder = configurableEmbedder.configuredEmbedder();
if (firstTime) {
if (configurableEmbedder instanceof JUnitStories) {
getStoryPathsFromJUnitStories(testClass);
} else if (configurableEmbedder instanceof JUnitStory) {
getStoryPathsFromJUnitStory();
}
}
configuration = configuredEmbedder.configuration();
configuration.useStepLifecycleObserver(new JUnitStepLifecycleObserver());
configuration.useStepExecutor(new ArquillianStepExecutor());
StepMonitor originalStepMonitor = createCandidateStepsWithNoMonitor();
storyDescriptions = buildDescriptionFromStories();
createCandidateStepsWith(originalStepMonitor);
initRootDescription(); // maybe declare as static?
if (firstTime) {
isRunningRemote = ArquillianUtils.isRunningRemote();
}
// don't print anything on the console inside the container
if (isRunningRemote) {
configuredEmbedder.useEmbedderMonitor(new NullEmbedderMonitor());
}
remoteExecutedStep = null;
System.out.println("Init time: " + (System.currentTimeMillis() - startTime));
firstTime = false;
}