216

JUnit4 でパラメータ化されたテストを使用するときに、独自のカスタム テスト ケース名を設定する方法はありますか?

[Test class].runTest[n]デフォルト — — を意味のあるものに変更したいと思います。

4

13 に答える 13

320

この機能はJUnit 4.11に組み込まれました。

パラメータ化されたテストの名前を変更するには、次のように言います。

@Parameters(name="namestring")

namestring次の特別なプレースホルダーを持つことができる文字列です。

  • {index}- この一連の引数のインデックス。デフォルトnamestring{index}です。
  • {0}- このテストの呼び出しからの最初のパラメーター値。
  • {1}- 2 番目のパラメーター値
  • 等々

テストの最終的な名前は、以下に示すように、テスト メソッドの名前の後namestringに括弧内の が続きます。

Parameterized例(アノテーションの単体テストから適応):

@RunWith(Parameterized.class)
static public class FibonacciTest {

    @Parameters( name = "{index}: fib({0})={1}" )
    public static Iterable<Object[]> data() {
        return Arrays.asList(new Object[][] { { 0, 0 }, { 1, 1 }, { 2, 1 },
                { 3, 2 }, { 4, 3 }, { 5, 5 }, { 6, 8 } });
    }

    private final int fInput;
    private final int fExpected;

    public FibonacciTest(int input, int expected) {
        fInput= input;
        fExpected= expected;
    }

    @Test
    public void testFib() {
        assertEquals(fExpected, fib(fInput));
    }

    private int fib(int x) {
        // TODO: actually calculate Fibonacci numbers
        return 0;
    }
}

testFib[1: fib(1)=1]や などの名前が付けられますtestFib[4: fib(4)=3]。(名前のtestFib部分は のメソッド名です@Test)。

于 2012-04-13T15:34:58.697 に答える
38

JUnit 4.5 を見ると、そのロジックは Parameterized クラス内のプライベート クラス内に埋め込まれているため、そのランナーは明らかにそれをサポートしていません。JUnit パラメータ化ランナーを使用することはできず、代わりに名前の概念を理解する独自のランナーを作成できませんでした (これは、名前をどのように設定するかという問題につながります...)。

JUnit の観点からは、単にインクリメントを渡す代わりに (またはそれに加えて)、コンマ区切りの引数を渡すとよいでしょう。TestNG がこれを行います。この機能が重要な場合は、www.junit.org で参照されている yahoo メーリング リストにコメントしてください。

于 2009-03-16T15:49:14.363 に答える
19

最近、JUnit 4.3.1 を使用しているときに同じ問題に遭遇しました。LabelledParameterized という Parameterized を拡張する新しいクラスを実装しました。JUnit 4.3.1、4.4、および 4.5 を使用してテストされています。@Parameters メソッドからの各パラメーター配列の最初の引数の文字列表現を使用して、Description インスタンスを再構築します。このコードは次の場所にあります。

http://code.google.com/p/migen/source/browse/trunk/java/src/.../LabelledParameterized.java?r=3789

およびその使用例:

http://code.google.com/p/migen/source/browse/trunk/java/src/.../ServerBuilderTest.java?r=3789

テストの説明は Eclipse で適切にフォーマットされます。これは、失敗したテストを見つけやすくするため、私が望んでいたものです。今後数日/数週間かけて、クラスをさらに改良し、文書化する予定です。落とす '?' ブリーディング エッジが必要な場合は、URL の一部。:-)

それを使用するには、そのクラス (GPL v3) をコピーし、 @RunWith(Parameterized.class) を @RunWith(LabelledParameterized.class) に変更するだけで、パラメーター リストの最初の要素が適切なラベルであると仮定します。

JUnit の今後のリリースでこの問題が解決されるかどうかはわかりませんが、解決されたとしても、すべての共同開発者も更新する必要があり、再ツール化よりも優先順位が高いため、JUnit を更新することはできません。したがって、クラス内の作業は、JUnit の複数のバージョンでコンパイルできるようになります。


注:上記のように、さまざまな JUnit バージョンで実行されるように、いくつかのリフレクション ジガリー ポケリーがあります。JUnit 4.3.1 専用のバージョンはこちらで、JUnit 4.4 および 4.5のバージョンはこちらで確認できます

于 2010-01-12T20:42:19.960 に答える
13

Parameterizedモデルとして、私は独自のカスタム テスト ランナー/スイートを作成しました - 約 30 分しかかかりませんでした。最初のLabelledParameterizedパラメーターのtoString().

私は配列が嫌いなので、配列も使用しません。:)

public class PolySuite extends Suite {

  // //////////////////////////////
  // Public helper interfaces

  /**
   * Annotation for a method which returns a {@link Configuration}
   * to be injected into the test class constructor
   */
  @Retention(RetentionPolicy.RUNTIME)
  @Target(ElementType.METHOD)
  public static @interface Config {
  }

  public static interface Configuration {
    int size();
    Object getTestValue(int index);
    String getTestName(int index);
  }

  // //////////////////////////////
  // Fields

  private final List<Runner> runners;

  // //////////////////////////////
  // Constructor

  /**
   * Only called reflectively. Do not use programmatically.
   * @param c the test class
   * @throws Throwable if something bad happens
   */
  public PolySuite(Class<?> c) throws Throwable {
    super(c, Collections.<Runner>emptyList());
    TestClass testClass = getTestClass();
    Class<?> jTestClass = testClass.getJavaClass();
    Configuration configuration = getConfiguration(testClass);
    List<Runner> runners = new ArrayList<Runner>();
    for (int i = 0, size = configuration.size(); i < size; i++) {
      SingleRunner runner = new SingleRunner(jTestClass, configuration.getTestValue(i), configuration.getTestName(i));
      runners.add(runner);
    }
    this.runners = runners;
  }

  // //////////////////////////////
  // Overrides

  @Override
  protected List<Runner> getChildren() {
    return runners;
  }

  // //////////////////////////////
  // Private

  private Configuration getConfiguration(TestClass testClass) throws Throwable {
    return (Configuration) getConfigMethod(testClass).invokeExplosively(null);
  }

  private FrameworkMethod getConfigMethod(TestClass testClass) {
    List<FrameworkMethod> methods = testClass.getAnnotatedMethods(Config.class);
    if (methods.isEmpty()) {
      throw new IllegalStateException("@" + Config.class.getSimpleName() + " method not found");
    }
    if (methods.size() > 1) {
      throw new IllegalStateException("Too many @" + Config.class.getSimpleName() + " methods");
    }
    FrameworkMethod method = methods.get(0);
    int modifiers = method.getMethod().getModifiers();
    if (!(Modifier.isStatic(modifiers) && Modifier.isPublic(modifiers))) {
      throw new IllegalStateException("@" + Config.class.getSimpleName() + " method \"" + method.getName() + "\" must be public static");
    }
    return method;
  }

  // //////////////////////////////
  // Helper classes

  private static class SingleRunner extends BlockJUnit4ClassRunner {

    private final Object testVal;
    private final String testName;

    SingleRunner(Class<?> testClass, Object testVal, String testName) throws InitializationError {
      super(testClass);
      this.testVal = testVal;
      this.testName = testName;
    }

    @Override
    protected Object createTest() throws Exception {
      return getTestClass().getOnlyConstructor().newInstance(testVal);
    }

    @Override
    protected String getName() {
      return testName;
    }

    @Override
    protected String testName(FrameworkMethod method) {
      return testName + ": " + method.getName();
    }

    @Override
    protected void validateConstructor(List<Throwable> errors) {
      validateOnlyOneConstructor(errors);
    }

    @Override
    protected Statement classBlock(RunNotifier notifier) {
      return childrenInvoker(notifier);
    }
  }
}

そして例:

@RunWith(PolySuite.class)
public class PolySuiteExample {

  // //////////////////////////////
  // Fixture

  @Config
  public static Configuration getConfig() {
    return new Configuration() {
      @Override
      public int size() {
        return 10;
      }

      @Override
      public Integer getTestValue(int index) {
        return index * 2;
      }

      @Override
      public String getTestName(int index) {
        return "test" + index;
      }
    };
  }

  // //////////////////////////////
  // Fields

  private final int testVal;

  // //////////////////////////////
  // Constructor

  public PolySuiteExample(int testVal) {
    this.testVal = testVal;
  }

  // //////////////////////////////
  // Test

  @Ignore
  @Test
  public void odd() {
    assertFalse(testVal % 2 == 0);
  }

  @Test
  public void even() {
    assertTrue(testVal % 2 == 0);
  }

}
于 2010-08-04T09:35:17.430 に答える
7

JUnitParams を試すこともできます: http://code.google.com/p/junitparams/

于 2011-06-08T14:30:53.800 に答える
6

junit4.8.2 からは、Parameterized クラスをコピーするだけで、独自の MyParameterized クラスを作成できます。TestClassRunnerForParameters の getName() および testName() メソッドを変更します。

于 2011-01-04T21:34:06.800 に答える
2

どれもうまくいかなかったので、Parameterized のソースを入手し、それを修正して新しいテスト ランナーを作成しました。あまり変更する必要はありませんでしたが、うまくいきました!!!

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import org.junit.Assert;
import org.junit.internal.runners.ClassRoadie;
import org.junit.internal.runners.CompositeRunner;
import org.junit.internal.runners.InitializationError;
import org.junit.internal.runners.JUnit4ClassRunner;
import org.junit.internal.runners.MethodValidator;
import org.junit.internal.runners.TestClass;
import org.junit.runner.notification.RunNotifier;

public class LabelledParameterized extends CompositeRunner {
static class TestClassRunnerForParameters extends JUnit4ClassRunner {
    private final Object[] fParameters;

    private final String fParameterFirstValue;

    private final Constructor<?> fConstructor;

    TestClassRunnerForParameters(TestClass testClass, Object[] parameters, int i) throws InitializationError {
        super(testClass.getJavaClass()); // todo
        fParameters = parameters;
        if (parameters != null) {
            fParameterFirstValue = Arrays.asList(parameters).toString();
        } else {
            fParameterFirstValue = String.valueOf(i);
        }
        fConstructor = getOnlyConstructor();
    }

    @Override
    protected Object createTest() throws Exception {
        return fConstructor.newInstance(fParameters);
    }

    @Override
    protected String getName() {
        return String.format("%s", fParameterFirstValue);
    }

    @Override
    protected String testName(final Method method) {
        return String.format("%s%s", method.getName(), fParameterFirstValue);
    }

    private Constructor<?> getOnlyConstructor() {
        Constructor<?>[] constructors = getTestClass().getJavaClass().getConstructors();
        Assert.assertEquals(1, constructors.length);
        return constructors[0];
    }

    @Override
    protected void validate() throws InitializationError {
        // do nothing: validated before.
    }

    @Override
    public void run(RunNotifier notifier) {
        runMethods(notifier);
    }
}

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public static @interface Parameters {
}

private final TestClass fTestClass;

public LabelledParameterized(Class<?> klass) throws Exception {
    super(klass.getName());
    fTestClass = new TestClass(klass);

    MethodValidator methodValidator = new MethodValidator(fTestClass);
    methodValidator.validateStaticMethods();
    methodValidator.validateInstanceMethods();
    methodValidator.assertValid();

    int i = 0;
    for (final Object each : getParametersList()) {
        if (each instanceof Object[])
            add(new TestClassRunnerForParameters(fTestClass, (Object[]) each, i++));
        else
            throw new Exception(String.format("%s.%s() must return a Collection of arrays.", fTestClass.getName(), getParametersMethod().getName()));
    }
}

@Override
public void run(final RunNotifier notifier) {
    new ClassRoadie(notifier, fTestClass, getDescription(), new Runnable() {
        public void run() {
            runChildren(notifier);
        }
    }).runProtected();
}

private Collection<?> getParametersList() throws IllegalAccessException, InvocationTargetException, Exception {
    return (Collection<?>) getParametersMethod().invoke(null);
}

private Method getParametersMethod() throws Exception {
    List<Method> methods = fTestClass.getAnnotatedMethods(Parameters.class);
    for (Method each : methods) {
        int modifiers = each.getModifiers();
        if (Modifier.isStatic(modifiers) && Modifier.isPublic(modifiers))
            return each;
    }

    throw new Exception("No public static parameters method on class " + getName());
}

public static Collection<Object[]> eachOne(Object... params) {
    List<Object[]> results = new ArrayList<Object[]>();
    for (Object param : params)
        results.add(new Object[] { param });
    return results;
}
}
于 2011-05-24T17:11:09.267 に答える
2

私は Assert とその仲間のために static import を多用しているので、アサーションを簡単に再定義できます:

private <T> void assertThat(final T actual, final Matcher<T> expected) {
    Assert.assertThat(editThisToDisplaySomethingForYourDatum, actual, expected);
}

たとえば、「名前」フィールドをテスト クラスに追加し、コンストラクターで初期化して、テストの失敗時にそれを表示できます。各テストのパラメーター配列の最初の要素として渡すだけです。これは、データのラベル付けにも役立ちます。

public ExampleTest(final String testLabel, final int one, final int two) {
    this.testLabel = testLabel;
    // ...
}

@Parameters
public static Collection<Object[]> data() {
    return asList(new Object[][]{
        {"first test", 3, 4},
        {"second test", 5, 6}
    });
}
于 2010-01-14T17:19:14.807 に答える
2

のようなメソッドを作成できます。

@Test
public void name() {
    Assert.assertEquals("", inboundFileName);
}

常に使用するわけではありませんが、どのテスト番号 143 かを正確に把握することは役に立ちます。

于 2009-08-10T20:23:50.170 に答える
0

dsaffが述べたように、JUnitParamsをチェックしてください。antを使用して、HTMLレポートにパラメーター化されたテストメソッドの説明を作成します。

これは、LabelledParameterizedを試し、eclipseで機能するものの、htmlレポートに関する限りantでは機能しないことを発見した後のことです。

乾杯、

于 2012-03-27T16:19:44.817 に答える
0

アクセスされるパラメーター (たとえば with は"{0}"常にtoString()表現を返すため、回避策の 1 つは、匿名の実装を作成しtoString()、それぞれの場合にオーバーライドすることです。たとえば、次のようになります。

public static Iterable<? extends Object> data() {
    return Arrays.asList(
        new MyObject(myParams...) {public String toString(){return "my custom test name";}},
        new MyObject(myParams...) {public String toString(){return "my other custom test name";}},
        //etc...
    );
}
于 2017-06-06T17:00:04.053 に答える