source: josm/trunk/test/unit/org/openstreetmap/josm/data/ProjectionBoundsTest.java@ 17442

Last change on this file since 17442 was 17275, checked in by Don-vip, 3 years ago

see #16567 - upgrade almost all tests to JUnit 5, except those depending on WiremockRule

See https://github.com/tomakehurst/wiremock/issues/684

  • Property svn:eol-style set to native
File size: 490 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data;
3
4import static org.junit.jupiter.api.Assertions.assertEquals;
5
6import org.junit.jupiter.api.Test;
7
8/**
9 * Unit tests for class {@link ProjectionBounds}.
10 */
11class ProjectionBoundsTest {
12
13 /**
14 * Unit test of {@link ProjectionBounds#toString}
15 */
16 @Test
17 void testToString() {
18 assertEquals("ProjectionBounds[1.0,2.0,3.0,4.0]", new ProjectionBounds(1, 2, 3, 4).toString());
19 }
20}
Note: See TracBrowser for help on using the repository browser.