source: josm/trunk/test/unit/org/openstreetmap/josm/data/osm/event/TagsChangedEventTest.java@ 11928

Last change on this file since 11928 was 11928, checked in by Don-vip, 7 years ago

improve unit tests, javadoc

  • Property svn:eol-style set to native
File size: 780 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.osm.event;
3
4import static org.junit.Assert.assertEquals;
5
6import org.junit.Rule;
7import org.junit.Test;
8import org.openstreetmap.josm.testutils.JOSMTestRules;
9
10import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
11
12/**
13 * Unit tests of {@link TagsChangedEvent} class.
14 */
15public class TagsChangedEventTest {
16
17 /**
18 * Setup test.
19 */
20 @Rule
21 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
22 public JOSMTestRules test = new JOSMTestRules();
23
24 /**
25 * Unit test of {@link TagsChangedEvent#toString}.
26 */
27 @Test
28 public void testToString() {
29 assertEquals("TAGS_CHANGED", new TagsChangedEvent(null, null, null).toString());
30 }
31}
Note: See TracBrowser for help on using the repository browser.