/** * Copyright 2015 ArcBees Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package com.arcbees.gaestudio.client.application.entity.editor; import org.jukito.All; import org.jukito.JukitoModule; import org.jukito.JukitoRunner; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.assertEquals; @RunWith(JukitoRunner.class) public class GeoPtValidatorTest { public static class MyModule extends JukitoModule { @Override protected void configureTest() { Double delta = 0.000000000001; bindManyNamedInstances(TestCase.class, "latitudes", new TestCase(90d, true), new TestCase(90d + delta, false), new TestCase(90d - delta, true), new TestCase(-90d, true), new TestCase(-90d + delta, true), new TestCase(-90d - delta, false)); bindManyNamedInstances(TestCase.class, "longitudes", new TestCase(180d, true), new TestCase(180d + delta, false), new TestCase(180d - delta, true), new TestCase(-180d, true), new TestCase(-180d + delta, true), new TestCase(-180d - delta, false)); } } public static class TestCase { Double value; Boolean isValid; public TestCase(Double value, Boolean valid) { this.value = value; isValid = valid; } } private final GeoPtValidator geoPtValidator = new GeoPtValidator(); @Test public void isLatitudeValid(@All("latitudes") TestCase testCase) { assertEquals("Latitude: " + testCase.value, testCase.isValid, geoPtValidator.isLatitudeValid(testCase.value)); } @Test public void isLongitudeValid(@All("longitudes") TestCase testCase) { assertEquals("Longitude: " + testCase.value, testCase.isValid, geoPtValidator.isLongitudeValid(testCase.value)); } }