public class GoogleLocationServiceTest {
@Test
public void test() {
GoogleLocationService gls = GoogleLocationServiceFactory.getGoogleLocationService();
String[] coords = gls.getLatLong("6245 Agronomy Road V6T 1Z4");
assertTrue(coords[0].equals("49.2601031") && coords[1].equals("-123.2505252"));
}