未找到类:IntelliJ 中的空测试套件

2022-08-31 06:15:43

我刚刚在我的大学开始计算机科学课程,我在IntelliJ上遇到了一些问题。当我尝试运行单元测试时,我收到消息

Process finished with exit code 1
Class not found: "edu.macalester.comp124.hw0.AreaTest"Empty test suite.

我还在屏幕左侧看到一条名为“未找到测试”的消息。我的测试代码在这里:

package edu.macalester.comp124.hw0;


import org.junit.Test;
import static org.junit.Assert.*;

public class AreaTest {

    @Test
    public void testSquare() {
    assertEquals(Area.getSquareArea(3.0), 9.0, 0.001);
    }

    @Test
    public void testCircle() {
    assertEquals(Area.getCircleArea(3.0), 28.2743, 0.001);
    }
}

我的项目代码在这里:

package edu.macalester.comp124.hw0;

import java.lang.Math;
public class Area {

/**
 * Calculates the area of a square.
 * @param sideLength The length of the side of a square
 * @return The area
 */
public static double getSquareArea(double sideLength) {
    // Has been replaced by correct formula
    return sideLength * sideLength;
}

/**
 * Calculates the area of a circle.
 * @param radius The radius of the circle
 * @return The area
 */
public static double getCircleArea(double radius) {
    // Replaced by correct value
    return radius * 2 * Math.PI;
}

}

如何使我的测试正常工作?我正在使用最新版本的IntelliJ IDEA CE。


答案 1

有相同的消息。我不得不删除运行/调试配置。

在我的情况下,我之前将单元测试作为本地测试运行。之后,我将测试移动到androidTest包并尝试再次运行它。Android Studio 记住了上次运行的配置,因此它尝试将其作为本地单元测试再次运行,从而产生了相同的错误。

删除配置并再次运行测试后,它生成了一个新配置并正常工作。

enter image description here


答案 2

我去了

File -> Invalidate Caches/Restart...

然后它为我工作。


推荐