如何在给定的包中运行所有测试?

时间:2016-12-02 14:15:48

标签: java junit4 test-suite

我写了一个套件:

beforeEach

其中package com; import org.junit.extensions.cpsuite.ClasspathSuite; import org.junit.runner.RunWith; @RunWith(ClasspathSuite.class) @ClasspathSuite.ClassnameFilters({"com.mycompany.*"}) @ClasspathSuite.IncludeJars(true) public class AllTests { } 是一个包,其中包含许多嵌套包和测试类。

我在com.mycompany.*子文件夹中的项目中包含来自takari-cpsuite的来源。

我让我的IDE将此类识别为套件,并在其附近显示一个图标以运行测试。

不幸的是,当我运行它时,我得到:

test

这里有什么不对?

0 个答案:

没有答案