以下代码段足以重现我的问题:
thrown
属性public
并收到错误org.jboss.weld.exceptions.DefinitionException: WELD-000075: Normal scoped managed bean implementation class has a public field
public
修饰符并收到错误org.junit.internal.runners.rules.ValidationError: The @Rule 'thrown' must be public.
public
修饰符到位并在类上添加@Dependent
注释范围,但出现错误org.jboss.weld.exceptions.DefinitionException: WELD-000046: At most one scope may be specified on [EnhancedAnnotatedTypeImpl] public @Dependent @ApplicationScoped @RunWith
我删除了所有不必要的代码,但这是一个非常复杂的单元测试,通过CDI进行模拟,服务注入,并且一些测试方法可能会引发异常。
import org.jglue.cdiunit.CdiRunner;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.junit.runner.RunWith;
@RunWith(CdiRunner.class)
public class FooBarTest {
@Rule
public ExpectedException thrown = ExpectedException.none();
@Test
public void test() {
}
}
所以我的问题是,一方面Weld希望所有字段都不公开,因为否则它将无法代理该类,另一方面,JUnit希望规则字段是公共的,因为它使用反射来访问它们并且不希望使用setAccessible(true)
方法,因为安全管理器处于活动状态。如何处理这个悖论?
注意:我还发现了对this answer的提示评论,说明
您还可以使用@Rule注释方法,这样可以避免问题
但我找不到任何关于方法的@Rule
注释的junit测试的例子,我打算就此问一个单独的问题。
答案 0 :(得分:12)
我发现了如何解决这个问题。为了将来参考,这里有一个有效的片段,希望这会有助于其他人。
import org.jglue.cdiunit.CdiRunner;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.junit.runner.RunWith;
@RunWith(CdiRunner.class)
public class FooBarTest {
private ExpectedException thrown = ExpectedException.none();
@Rule
public ExpectedException getThrown() {
return thrown;
}
@Test
public void test() {
thrown.expect(ArithmeticException.class);
int i = 1 / 0;
}
}