Junit抛出java.lang.Exception:即使存在public @test,也没有可运行的方法

时间:2019-12-05 09:01:08

标签: java junit junit4

我有一个Springboot,java,maven项目。 这是版本- Java-1.8; Junit- 4; SpringBoot版本-2.1.6-RELEASE

有这个TestClass。 PFA代码-

ListView.builder
 (
    itemCount: litems.length,
    itemBuilder: (BuildContext context, int index) {
    return Hero(
                 tag: "tag_name" + index.toString(),
                 child: yourChild();
               );
    }
 )

当我以JUnit运行它时,收到以下错误消息-

@RunWith(SpringRunner.class)
@SpringBootTest
public class TestClass {

    @BeforeMethod
    public void setUp() {
        // code
    }

    @Test
    public void testMethod() throws ExecutionException {
        // Test method
    }

    static abstract class class1 {
        // code
    }

    static abstract class class2 {
        // code
    }
}

有人可以建议我在这里做错什么吗?

0 个答案:

没有答案