如何与JUnit一起使用Or

时间:2019-06-25 17:42:29

标签: java junit junit4 hamcrest

在一个jUnit测试用例中,我试图使用一个Assume来检查一个条件是否为真或另一个条件是否为真。但是,只要满足一个条件,jUnit就会有效地停止测试。

在下面列出的示例中,如果原因为null或enumValue在allowedReasons EnumSet中,我将尝试运行测试。

EnumSet的成员中不允许使用null值,我想坚持使用EnumSet来模仿实际类用于验证其原因的内容。

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

    @Parameters
    public static Iterable<EntitlementReason> data()
    {
      final List<EntitlementReason> data = new ArrayList<>();
      data.addAll(Arrays.asList(EntitlementReason.values()));
      data.add(null);
      return data;
    }

    @Parameter(0)
    public EntitlementReason reason;

    private final Set<EntitlementReason> allowedReasons =
        EnumSet.of(EntitlementReason.INCARCERATED, EntitlementReason.ABSENT_FROM_CANADA);

    @Test
    public void testAllowedExclusionReason()
    {
      Assume.assumeThat(reason, Matchers.isIn(allowedReasons));
      Assume.assumeThat(reason, Matchers.nullValue());
      final ExcludedPeriodFact test = new ExcludedPeriodFact();
      test.setExclusionReason(reason);
      Assert.assertEquals("getExclusionReason()", reason, test.getExclusionReason());
    }
  }

1 个答案:

答案 0 :(得分:2)

事实证明,使用Matcher anyOf可以做到这一点。

@Test
public void testAllowedExclusionReason()
{
  Assume.assumeThat(reason, Matchers.anyOf(Matchers.nullValue(), Matchers.isIn(allowedReasons)));
  final ExcludedPeriodFact test = new ExcludedPeriodFact();
  test.setExclusionReason(reason);
  Assert.assertEquals("getExclusionReason()", reason, test.getExclusionReason());
}