import eecs2030.TestingSquareRoot; public class TestDriver { public static final String INPUT_1 = "2148322500"; public static final String INPUT_2 = "-1"; public static final String INPUT_3 = "25"; public static final String INPUT_4 = "hello"; public static final String INPUT_5 = "25.0"; public static void main(String[] args) { System.out.println("\nTesting Solution 1:"); System.out.println("input: " + INPUT_1 + "\tresult: " + TestingSquareRoot.solution1(INPUT_1)); System.out.println("input: " + INPUT_2 + "\tresult: " + TestingSquareRoot.solution1(INPUT_2)); System.out.println("input: " + INPUT_3 + "\tresult: " + TestingSquareRoot.solution1(INPUT_3)); System.out.println("input: " + INPUT_4 + "\tresult: " + TestingSquareRoot.solution1(INPUT_4)); System.out.println("input: " + INPUT_5 + "\tresult: " + TestingSquareRoot.solution1(INPUT_5)); } }