binding.setVariable("street", "1600 Pennsylvania Avenue");
binding.setVariable("city", "Washington");
binding.setVariable("state", "DC");
GroovyShell shell = new GroovyShell(binding);
try {
shell.evaluate(new File("src/geocodeV3.groovy"));
assertEquals(38.898,
Double.parseDouble((String) binding.getVariable("lat")),0.01);
assertEquals(-77.037,
Double.parseDouble((String) binding.getVariable("lng")),0.01);
} catch (CompilationFailedException | IOException e) {