0

私は JBehave を初めて使用し、JBehave-JUnit-Runner を使用して、Eclipse Luna (Ubuntu 12.04) の JUnit でテスト結果を適切に表示しようとしています。JBehave-JUnit-Runner 1.1.2、JUnit 4.12-beta-1、および JBehave-core 4.0-beta-9 を使用しています。ストーリー ファイルを右クリックして [Run as JUnit Test] を実行すると、問題はありません。ただし、JBehave-JUnit-Runner に必要な @RunWith(JUnitReportingRunner.class) をストーリー クラスの先頭に配置すると、次のエラーが発生します。

java.lang.RuntimeException: java.lang.NullPointerException
at de.codecentric.jbehave.junit.monitoring.JUnitReportingRunner.run(JUnitReportingRunner.java:80)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
Caused by: java.lang.NullPointerException
at de.codecentric.jbehave.junit.monitoring.JUnitScenarioReporter.afterStory(JUnitScenarioReporter.java:114)
at org.jbehave.core.reporters.DelegatingStoryReporter.afterStory(DelegatingStoryReporter.java:49)
at org.jbehave.core.reporters.ConcurrentStoryReporter.afterStory(ConcurrentStoryReporter.java:120)
at org.jbehave.core.embedder.PerformableTree.performBeforeOrAfterStories(PerformableTree.java:399)
at org.jbehave.core.embedder.StoryManager.performStories(StoryManager.java:102)
at org.jbehave.core.embedder.StoryManager.runStories(StoryManager.java:93)
at org.jbehave.core.embedder.StoryManager.runStoriesAsPaths(StoryManager.java:74)
at org.jbehave.core.embedder.Embedder.runStoriesAsPaths(Embedder.java:204)
at de.codecentric.jbehave.junit.monitoring.JUnitReportingRunner.run(JUnitReportingRunner.java:78)
... 6 more

これがテスト用のユーティリティ クラスです。非常に基本的な1つの方法:

package org.felimar;

public abstract class StringManipulation
{
  public static boolean stringBlank(final String src)
  {
    return src.matches("^\\s*$"); //$NON-NLS-1$
  }
}

JBehave のストーリー ファイル:

Utilities for managing character strings

Narrative:
In order to easily manipulate and investigate character strings
As a development team
I want to use a group of string-related utilities

Scenario:  A string contains zero or more characters
Given a source string with value <value>
Then the method should return <return>

Examples:
|value|return|
|""|true|
|" "|true|
|"Normal Non-Blank"|false|

ステップクラス:

package org.felimar.steps;

import static org.felimar.StringManipulation.stringBlank;

import org.felimar.StringManipulation;
import org.jbehave.core.annotations.Given;
import org.jbehave.core.annotations.Named;
import org.jbehave.core.annotations.Then;

public class StringManipulationSteps
{
  private String m_srcString;

  public String getSrcString()
  {
    return m_srcString;
  }

  @Given("a source string with value $value")
  public void givenValue(@Named("value") final String srcString)
  {
    setSrcString(srcString);
  }

  public void setSrcString(final String srcString)
  {
    m_srcString = srcString;
  }

  @Then("the method should return $value")
  public void stringBlankRtrns(@Named("value") final boolean isBlank)
  {
    if (stringBlank(getSrcString()) != isBlank)
      throw new RuntimeException("stringBlank did not determine *" +
                                getSrcString() + "* was " + isBlank);
  }
}

最後に、story クラス:

package org.felimar.stories;

import static java.util.Arrays.asList;
import static org.jbehave.core.reporters.Format.CONSOLE;
import static org.jbehave.core.reporters.Format.TXT;

import java.util.List;

import org.felimar.StringManipulation;
import org.felimar.steps.StringManipulationSteps;
import org.jbehave.core.configuration.MostUsefulConfiguration;
import org.jbehave.core.junit.JUnitStories;
import org.jbehave.core.reporters.StoryReporterBuilder;
import org.jbehave.core.steps.InjectableStepsFactory;
import org.jbehave.core.steps.InstanceStepsFactory;
import org.junit.runner.RunWith;

import de.codecentric.jbehave.junit.monitoring.JUnitReportingRunner;

@RunWith(JUnitReportingRunner.class)
public class StringManipulationStories extends JUnitStories
{
  public StringManipulationStories()
  {
    super();
    super.useConfiguration(
     new MostUsefulConfiguration().useStoryReporterBuilder(
      new StoryReporterBuilder().withDefaultFormats().withFormats(
          CONSOLE, TXT)));
  }

  @Override
  public InjectableStepsFactory stepsFactory()
  {
    return new InstanceStepsFactory(configuration(),
                                   new StringManipulationSteps());
  }

  @Override
  protected List<String> storyPaths()
  {
    return asList("org/felimar/stories/StringManipulationStories.story");
  }
}

いずれかのコードに明らかなエラーがありますか? または、ベータ ライブラリの使用をやめるべきですか?

4

1 に答える 1