更改参数化测试的名称


204

在JUnit4中使用参数化测试时,是否可以设置自己的自定义测试用例名称?

我想将默认值更改为[Test class].runTest[n]有意义的值。

Answers:


299

此功能使其成为JUnit 4.11的一部分

要使用更改参数化测试的名称,请说:

@Parameters(name="namestring")

namestring 是一个字符串,可以具有以下特殊占位符:

  • {index}-这组参数的索引。默认namestring值为{index}
  • {0} -此测试调用的第一个参数值。
  • {1} -第二个参数值
  • 等等

测试的最终名称将是测试方法的名称,后跟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)。


4
没有理由不会出现在4.11中,它处于主状态。现在当4.11可用时,这是一个好问题:-)
Matthew Farwell 2012年

1
4.11现在处于测试阶段,可以从与上述相同的链接下载:-)
rescdsk 2012年

2
是的,但是有一个错误。如果像在此发布中一样在参数“名称”值中加上括号,则会中断Eclipse中单元测试名称的显示。
djangofan

7
很好,但是如果{0}{1}是数组怎么办?理想情况下Arrays.toString({0}),JUnit应该调用而不是{0}.toString()。例如,我的data()方法返回Arrays.asList(new Object[][] {{ new int[] { 1, 3, 2 }, new int[] { 1, 2, 3 } }});
dogbane

1
@djangofan这是一个8年的Eclipse错误:bugs.eclipse.org/bugs/show_bug.cgi?id=102512

37

从JUnit 4.5来看,它的运行器显然不支持该逻辑,因为该逻辑被埋在Parameterized类的私有类中。您不能使用JUnit参数化运行器,而是创建自己的运行器,该运行器将理解名称的概念(这导致了如何设置名称的问题……)。

从JUnit的角度来看,如果不是(或者除了只是)传递增量,而是传递逗号分隔的参数,那将是很好的选择。TestNG做到这一点。如果该功能对您很重要,则可以在www.junit.org上引用的yahoo邮件列表中发表评论。


3
如果在JUnit中对此有所改进,我将不胜感激!
guerda

17
刚刚检查,在github.com/KentBeck/junit/issues#issue/44上对此功能有出色的要求,请对其进行投票。

8
@Frank,我认为尚未发布解决此问题的版本。它将在JUnit 4.11中。那时(假设设计保持不变),这将是一种文本方式来指定您如何命名测试,包括将参数作为名称。真的很好。
义乌2012年

5
JUnit 4.11现在已经发布:-)
rescdsk 2012年

7
这是指向原始问题github.com/junit-team/junit/issues/44的更新链接,以供将来参考
kldavis4 2013年

20

我最近在使用JUnit 4.3.1时遇到了相同的问题。我实现了一个扩展参数化的新类,称为LabelledParameterized。已使用JUnit 4.3.1、4.4和4.5进行了测试。它使用@Parameters方法中每个参数数组的第一个参数的String表示来重构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中很好地描述测试描述的格式,因为这使失败的测试更容易找到!在接下来的几天/几周内,我可能会进一步完善和记录课程。删除“?” 部分网址,如果您希望获得最新消息的话。:-)

要使用它,您要做的就是复制该类(GPL v3),并假设参数列表的第一个元素是一个合理的标签,将@RunWith(Parameterized.class)更改为@RunWith(LabelledParameterized.class)。

我不知道是否有更高版本的JUnit可以解决此问题,但是即使它们解决了,我也无法更新JUnit,因为我所有的共同开发人员也必须进行更新,而且我们拥有比重新开发工具更高的优先级。因此,该类中的工作可以由多个版本的JUnit编译。


注意:存在一些反射性的棘手问题,因此它可以跨上述不同的JUnit版本运行。专门为JUnit的4.3.1版本可以发现这里并选择JUnit 4.4和4.5,在这里


:-)今天我的一位联合开发人员对此有问题,因为我在上述消息中指向的版本使用JUnit 4.3.1(而不是我最初所说的4.4)。他正在使用JUnit 4.5.0,它引起了问题。我今天将解决这些问题。
darrenp 2010年

我花了一些时间来了解您需要在构造函数中传递测试名称,但不必记住它。感谢您的代码!
giraff 2011年

只要我从Eclipse运行测试,效果就很好。但是,有没有人有使其与JUnit Ant Task一起工作的经验?测试报告execute[0], execute[1] ... execute[n]在生成的测试报告中命名。
Henrik AastedSørensen2012年

非常好。奇迹般有效。如果可以添加信息,那就很好了,它要求将“字符串标签,...”作为第一个参数添加到调用的@Test方法中。
gia

13

随着Parameterized作为一种模式,我写我自己的自定义测试跑步/套件-只花了约半小时。它与darrenp的稍有不同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);
  }

}

6

从junit4.8.2开始,您只需复制Parameterized类即可创建自己的MyParameterized类。更改TestClassRunnerForParameters中的getName()和testName()方法。


我尝试了这个,但没有帮助。创建新类时,getParametersMethod失败。
java_enthu


2

您可以创建类似的方法

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

虽然我不会一直使用它,但准确找出143号测试还是很有用的。


2

我为Assert和朋友广泛使用了静态导入,因此很容易重新定义断言:

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}
    });
}

如果测试未通过断言,这很好,但是在其他情况下,例如抛出了使测试失败的异常,或者如果测试期望抛出异常,则应考虑应该使用的名称开销。由框架处理。
Yishai 2010年

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;
}
}

2

一种解决方法是使用自定义消息捕获所有Throwable并将其嵌套到新的Throwable中,该消息包含有关参数的所有信息。该消息将出现在堆栈跟踪中。 当所有断言,错误和异常的测试均失败时,此方法将起作用,因为它们都是Throwable的子类。

我的代码如下所示:

@RunWith(Parameterized.class)
public class ParameterizedTest {

    int parameter;

    public ParameterizedTest(int parameter) {
        super();
        this.parameter = parameter;
    }

    @Parameters
    public static Collection<Object[]> data() {
        return Arrays.asList(new Object[][] { {1}, {2} });
    }

    @Test
    public void test() throws Throwable {
        try {
            assertTrue(parameter%2==0);
        }
        catch(Throwable thrown) {
            throw new Throwable("parameter="+parameter, thrown);
        }
    }

}

失败的测试的堆栈跟踪为:

java.lang.Throwable: parameter=1
    at sample.ParameterizedTest.test(ParameterizedTest.java:34)
Caused by: java.lang.AssertionError
    at org.junit.Assert.fail(Assert.java:92)
    at org.junit.Assert.assertTrue(Assert.java:43)
    at org.junit.Assert.assertTrue(Assert.java:54)
    at sample.ParameterizedTest.test(ParameterizedTest.java:31)
    ... 31 more

0

如dsaff所述,检查JUnitParams,使用ant在html报告中构建参数化测试方法描述。

这是在尝试了LabelledParameterized并发现它虽然可以与eclipse一起使用之后,但就html报告而言,它不适用于ant。

干杯,


0

由于访问的参数(例如,"{0}"始终返回toString()表示形式),一种解决方法是进行匿名实现并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...
    );
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.