简体   繁体   中英

How to run specific junit tests at run time

I'm trying to figure out a good solution to having specific unit tests run with certain runtime configurations. For example:

public class TestClassAlpha() {

    @setup 
    public void setup() {
    }

    @After 
    public void tearDown() {
    }

    @Test
    @<only run in particular env>
    public void testA() {
        //whatever A
    }

    //always run below test no mater what env
    @Test
    public void testB() {
        //whatever B 
    }

}

I am contemplating a custom annotation or custom rule perhaps, but i thought this has to be a question that comes up frequently as running tests in certain conditions (envs) is a very valid scenario. I did some limited searching within stack, and I didn't find anything that really that helped solidify either way.

This post shows you exactly what you require.

You should Write a Custom TestRule and an annotation to mark the condition.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM