public class AreaTriangleTest extends Main{
public int getArrayElements(int index) throws IOException {
String[] args={};
Main.main(args);
Main.getArray();
return (int) Main.getArray().get(0);
}
@Test
public void positiveTriangleCheckTest() throws IOException {
if (getArrayElements(0) + getArrayElements(1) > getArrayElements(2) & getArrayElements(0) + getArrayElements(2) > getArrayElements(1) & getArrayElements(1) + getArrayElements(2) > getArrayElements(0))
System.out.println("Треугольник существует");
}
}