1. ホーム
  2. ジャワ

[解決済み] クラスが見つかりません。IntelliJの空のテストスイート

2022-03-03 11:38:45

質問

私は大学でコンピュータ・サイエンス・プログラムを始めたばかりですが、IntelliJでいくつかの問題を抱えています。ユニットテストを実行しようとすると、次のようなメッセージが表示されます。

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

また、画面の左側に"No tests were found"というタイトルのメッセージが表示されています。私のテストコードはここにあります。

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を使用しています。

解決方法を教えてください。

さて、ここで私が問題にしたのは、フォルダ名です。私はコードフォルダをClasses 2016/2017と呼んでいたのですが、これがIntelliJに嫌われたのです。スラッシュ(またはパスの他の不快な文字)を削除し、プロジェクトを再インポートすれば、うまくいきますよ。