@ -1,5 +1,14 @@
import junit.framework.TestCase;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class CalculationsTest extends TestCase {
}
public class CalculationsTest {
@Test
public void testCalculateSquare() {
Calculations calc = new Calculations();
// Test with a positive number
assertEquals(25, calc.calculateSquare(5));