আমি আমার কলেজে কম্পিউটার বিজ্ঞান প্রোগ্রামটি শুরু করছি, এবং ইন্টেলিজিজের সাথে আমার কিছু সমস্যা রয়েছে। আমি যখন ইউনিট পরীক্ষা চালানোর চেষ্টা করি, আমি বার্তাটি পাই
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;
}
}
আমি কীভাবে আমার পরীক্ষাগুলি কাজে লাগাতে পারি? আমি ইন্টেলিজ আইডিইএ সিইর সাম্প্রতিকতম সংস্করণটি ব্যবহার করছি।
mvn clean package
টার্মিনালে টাইপ করার মতোই সহজ ছিল । নিশ্চিত না যে কেন ইনটেলিজি প্রকল্পের শুরুতে ভুলভাবে আমদানি করেছিল।