대학에서 컴퓨터 과학 프로그램을 시작하고 있으며 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를 사용하고 있습니다.
mvn clean package
터미널에 입력하는 것만 큼 간단했습니다 . IntelliJ가 왜 처음에 프로젝트를 잘못 가져 왔는지 확실하지 않습니다.