Excluding a non param test in parameterized test class

前端 未结 10 833
粉色の甜心
粉色の甜心 2020-12-02 19:32

Is there any annotation in JUnit to exclude a non param test in parameterized test class?

10条回答
  •  天命终不由人
    2020-12-02 20:13

    I stuck in this problem while I'm writing test in spring boot MockMvc I simply created two classes in separate java files ( one for ParameterizedTest and other for SingleTest ) and create a suite for them. because inner classes were creating error for static members and and not static members and class.

提交回复
热议问题