如何在每个JUnit @Test方法之前单独运行一些代码,而不使用@RunWith和AOP?

时间:2011-11-22 21:12:29

标签: java reflection junit aop

用例很简单:我想在JUnit测试中的每个方法之前运行一些样板代码,用@Test 注释我的自定义注释(让我们称之为@Mine)。

我不想使用以下方法(括号中的解释):

  1. @RunWith (我的测试可能,或者可能不会使用此注释,所以我不能假设我可以使用自己的跑步者)
  2. AOP (我不能依赖第三方库,例如AspectJ)
  3. 我想这只留给我反思,这对我很好。我想通过使用@Before并通过Thread.getCurrentThread()等获得当前的方法,但不知怎的,我觉得这个解决方案有点脏,因为我必须在这个方法中再次制作锅炉板代码来激发反射(和避免任何不必要的代码是首要目标。)

    也许你有其他一些想法?

2 个答案:

答案 0 :(得分:10)

基于Mark unit test as an expected failure,您需要一个与TestRule的答案非常相似的解决方案。使用@Deprecated注释的示例(您可以在此处使用),如果方法上存在注释,则可以插入代码。 Description类包含方法上的注释列表。

public class ExecutionTest {
    public class BeforeExecution implements TestRule {
        public Statement apply(Statement base, Description description) {
            return statement(base, description);
        }

        private Statement statement(final Statement base, final Description description) {
            return new Statement() {
                @Override
                public void evaluate() throws Throwable {
                    if (description.getAnnotation(Deprecated.class) != null) {
                        // you can do whatever you like here.
                        System.err.println("this will be run when the method has an @Deprecated annotation");
                    }
                    base.evaluate();
                }
            };
        }
    }

    @Rule public BeforeExecution beforeExecution = new BeforeExecution();

    // Will have code executed.
    @Deprecated
    @Test public void test1() {
         // stuff
    }

    // won't have code executed.
    @Test public void test2() {
         // stuff
    }
}

答案 1 :(得分:2)

我会把班级分成两部分。其中一个使用@mine注释的方法,另一个注释其他方法。

然后正常使用@before。

这不会增加任何标准代码,并且对于未来的开发人员也很容易理解和维护。