import static org.junit.jupiter.api.Assertions.assertEquals; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; public class TriangleTest { Triangle triangle; @BeforeEach public void initEach() { triangle = new Triangle(); } @Test public void testCalcArea() { assertEquals(0, triangle.caclArea()); } }