Index: /trunk/test/functional/org/openstreetmap/josm/data/osm/TaginfoTestIT.java
===================================================================
--- /trunk/test/functional/org/openstreetmap/josm/data/osm/TaginfoTestIT.java	(revision 10757)
+++ /trunk/test/functional/org/openstreetmap/josm/data/osm/TaginfoTestIT.java	(revision 10758)
@@ -45,5 +45,5 @@
      */
     @Test
-    public void checkPopularTags() throws SAXException, IOException, ParseException {
+    public void testCheckPopularTags() throws SAXException, IOException, ParseException {
         TaggingPresets.readFromPreferences();
         new TagChecker().initialize();
Index: /trunk/test/functional/org/openstreetmap/josm/io/MultiFetchServerObjectReaderTest.java
===================================================================
--- /trunk/test/functional/org/openstreetmap/josm/io/MultiFetchServerObjectReaderTest.java	(revision 10757)
+++ /trunk/test/functional/org/openstreetmap/josm/io/MultiFetchServerObjectReaderTest.java	(revision 10758)
@@ -271,5 +271,5 @@
 
     @Test
-    public void multiGetWithNonExistingNode() throws OsmTransferException {
+    public void testMultiGetWithNonExistingNode() throws OsmTransferException {
         MultiFetchServerObjectReader reader = new MultiFetchServerObjectReader();
         ArrayList<Node> nodes = new ArrayList<>(ds.getNodes());
Index: /trunk/test/functional/org/openstreetmap/josm/io/OsmServerBackreferenceReaderTest.java
===================================================================
--- /trunk/test/functional/org/openstreetmap/josm/io/OsmServerBackreferenceReaderTest.java	(revision 10757)
+++ /trunk/test/functional/org/openstreetmap/josm/io/OsmServerBackreferenceReaderTest.java	(revision 10758)
@@ -273,5 +273,5 @@
 
     @Test
-    public void testBackreferenceForNode_Full() throws OsmTransferException {
+    public void testBackreferenceForNodeFull() throws OsmTransferException {
         Node n = lookupNode(ds, 0);
         assertNotNull(n);
@@ -357,5 +357,5 @@
 
     @Test
-    public void testBackreferenceForWay_Full() throws OsmTransferException {
+    public void testBackreferenceForWayFull() throws OsmTransferException {
         Way w = lookupWay(ds, 1);
         assertNotNull(w);
@@ -506,5 +506,5 @@
 
     @Test
-    public void testBackreferenceForRelation_Full() throws OsmTransferException {
+    public void testBackreferenceForRelationFull() throws OsmTransferException {
         Relation r = lookupRelation(ds, 1);
         assertNotNull(r);
Index: /trunk/test/functional/org/openstreetmap/josm/tools/HttpClientTest.java
===================================================================
--- /trunk/test/functional/org/openstreetmap/josm/tools/HttpClientTest.java	(revision 10757)
+++ /trunk/test/functional/org/openstreetmap/josm/tools/HttpClientTest.java	(revision 10758)
@@ -147,5 +147,5 @@
 
     @Test
-    public void test418() throws IOException {
+    public void testHttp418() throws IOException {
         // https://tools.ietf.org/html/rfc2324
         final HttpClient.Response response = HttpClient.create(new URL("https://httpbin.org/status/418")).connect(progress);
Index: /trunk/test/performance/org/openstreetmap/josm/data/osm/KeyValuePerformanceTest.java
===================================================================
--- /trunk/test/performance/org/openstreetmap/josm/data/osm/KeyValuePerformanceTest.java	(revision 10757)
+++ /trunk/test/performance/org/openstreetmap/josm/data/osm/KeyValuePerformanceTest.java	(revision 10758)
@@ -56,5 +56,5 @@
     @Test
     @SuppressFBWarnings(value = "DM_STRING_CTOR", justification = "test Strings that are interned and those that are not")
-    public void measureStringEqualsIntern() {
+    public void testMeasureStringEqualsIntern() {
         String str1Interned = "string1";
         String str1InternedB = "string1";
Index: /trunk/test/performance/org/openstreetmap/josm/data/osm/RoundingPerformanceTest.java
===================================================================
--- /trunk/test/performance/org/openstreetmap/josm/data/osm/RoundingPerformanceTest.java	(revision 10757)
+++ /trunk/test/performance/org/openstreetmap/josm/data/osm/RoundingPerformanceTest.java	(revision 10758)
@@ -25,5 +25,5 @@
     @Test
     @SuppressFBWarnings(value = "RV_RETURN_VALUE_IGNORED_NO_SIDE_EFFECT")
-    public void test() {
+    public void testRounding() {
         final int n = 1000000;
         long start = System.nanoTime();
Index: /trunk/test/performance/org/openstreetmap/josm/io/OsmReaderPerformanceTest.java
===================================================================
--- /trunk/test/performance/org/openstreetmap/josm/io/OsmReaderPerformanceTest.java	(revision 10757)
+++ /trunk/test/performance/org/openstreetmap/josm/io/OsmReaderPerformanceTest.java	(revision 10758)
@@ -62,5 +62,5 @@
      */
     @Test
-    public void test() throws Exception {
+    public void testPlain() throws Exception {
         runTest(".osm-file", true);
     }
Index: /trunk/test/unit/org/openstreetmap/josm/actions/AlignInLineActionTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/actions/AlignInLineActionTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/actions/AlignInLineActionTest.java	(revision 10758)
@@ -45,5 +45,5 @@
      */
     @Test
-    public void nodesOpenWay() {
+    public void testNodesOpenWay() {
         DataSet dataSet = new DataSet();
         OsmDataLayer layer = new OsmDataLayer(dataSet, OsmDataLayer.createNewName(), null);
@@ -84,5 +84,5 @@
      */
     @Test
-    public void nodesClosedWay() {
+    public void testNodesClosedWay() {
         DataSet dataSet = new DataSet();
         OsmDataLayer layer = new OsmDataLayer(dataSet, OsmDataLayer.createNewName(), null);
@@ -124,5 +124,5 @@
      */
     @Test
-    public void nodesOpenWays() {
+    public void testNodesOpenWays() {
         DataSet dataSet = new DataSet();
         OsmDataLayer layer = new OsmDataLayer(dataSet, OsmDataLayer.createNewName(), null);
Index: /trunk/test/unit/org/openstreetmap/josm/actions/CombineWayActionTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/actions/CombineWayActionTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/actions/CombineWayActionTest.java	(revision 10758)
@@ -62,5 +62,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(NodePair.class).usingGetClass()
             .withPrefabValues(Node.class, new Node(1), new Node(2))
Index: /trunk/test/unit/org/openstreetmap/josm/actions/CreateCircleActionTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/actions/CreateCircleActionTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/actions/CreateCircleActionTest.java	(revision 10758)
@@ -74,5 +74,5 @@
      */
     @Test
-    public void test7421_0() {
+    public void testTicket7421case0() {
         DataSet dataSet = new DataSet();
         OsmDataLayer layer = new OsmDataLayer(dataSet, OsmDataLayer.createNewName(), null);
@@ -139,5 +139,5 @@
      */
     @Test
-    public void test7421_1() {
+    public void testTicket7421case1() {
         DataSet dataSet = new DataSet();
         OsmDataLayer layer = new OsmDataLayer(dataSet, OsmDataLayer.createNewName(), null);
Index: /trunk/test/unit/org/openstreetmap/josm/actions/ExtensionFileFilterTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/actions/ExtensionFileFilterTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/actions/ExtensionFileFilterTest.java	(revision 10758)
@@ -41,5 +41,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(ExtensionFileFilter.class).usingGetClass()
             .verify();
Index: /trunk/test/unit/org/openstreetmap/josm/actions/UnJoinNodeWayActionTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/actions/UnJoinNodeWayActionTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/actions/UnJoinNodeWayActionTest.java	(revision 10758)
@@ -50,5 +50,5 @@
      */
     @Test
-    public void test10396() {
+    public void testTicket10396() {
         DataSet dataSet = new DataSet();
         OsmDataLayer layer = new OsmDataLayer(dataSet, OsmDataLayer.createNewName(), null);
Index: /trunk/test/unit/org/openstreetmap/josm/actions/mapmode/SelectActionTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/actions/mapmode/SelectActionTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/actions/mapmode/SelectActionTest.java	(revision 10758)
@@ -86,5 +86,5 @@
     @Test
     @SuppressFBWarnings(value = "ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD")
-    public void test10748() {
+    public void testTicket10748() {
         DataSet dataSet = new DataSet();
         OsmDataLayer layer = new OsmDataLayer(dataSet, OsmDataLayer.createNewName(), null);
Index: /trunk/test/unit/org/openstreetmap/josm/command/AddCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/AddCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/AddCommandTest.java	(revision 10758)
@@ -136,5 +136,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(AddCommand.class).usingGetClass()
             .withPrefabValues(OsmPrimitive.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/AddPrimitivesCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/AddPrimitivesCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/AddPrimitivesCommandTest.java	(revision 10758)
@@ -257,5 +257,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(AddPrimitivesCommand.class).usingGetClass()
             .withPrefabValues(DataSet.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/ChangeCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/ChangeCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/ChangeCommandTest.java	(revision 10758)
@@ -152,5 +152,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(ChangeCommand.class).usingGetClass()
             .withPrefabValues(DataSet.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/ChangeNodesCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/ChangeNodesCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/ChangeNodesCommandTest.java	(revision 10758)
@@ -124,5 +124,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(ChangeNodesCommand.class).usingGetClass()
             .withPrefabValues(Way.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/ChangePropertyCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/ChangePropertyCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/ChangePropertyCommandTest.java	(revision 10758)
@@ -278,5 +278,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(ChangePropertyCommand.class).usingGetClass()
             .withPrefabValues(DataSet.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/ChangePropertyKeyCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/ChangePropertyKeyCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/ChangePropertyKeyCommandTest.java	(revision 10758)
@@ -148,5 +148,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(ChangePropertyKeyCommand.class).usingGetClass()
             .withPrefabValues(DataSet.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/ChangeRelationMemberRoleCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/ChangeRelationMemberRoleCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/ChangeRelationMemberRoleCommandTest.java	(revision 10758)
@@ -145,5 +145,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(ChangeRelationMemberRoleCommand.class).usingGetClass()
             .withPrefabValues(Relation.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/CommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/CommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/CommandTest.java	(revision 10758)
@@ -81,5 +81,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(Command.class).usingGetClass()
             .withPrefabValues(DataSet.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/DeleteCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/DeleteCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/DeleteCommandTest.java	(revision 10758)
@@ -376,5 +376,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(DeleteCommand.class).usingGetClass()
             .withPrefabValues(DataSet.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/MoveCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/MoveCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/MoveCommandTest.java	(revision 10758)
@@ -259,5 +259,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(MoveCommand.class).usingGetClass()
             .withPrefabValues(LatLon.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/PurgeCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/PurgeCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/PurgeCommandTest.java	(revision 10758)
@@ -144,5 +144,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(PurgeCommand.class).usingGetClass()
             .withPrefabValues(DataSet.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/RemoveNodesCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/RemoveNodesCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/RemoveNodesCommandTest.java	(revision 10758)
@@ -122,5 +122,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(RemoveNodesCommand.class).usingGetClass()
             .withPrefabValues(Way.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/RotateCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/RotateCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/RotateCommandTest.java	(revision 10758)
@@ -133,5 +133,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(RotateCommand.class).usingGetClass()
                 .withPrefabValues(LatLon.class, LatLon.ZERO, new LatLon(45, 45))
Index: /trunk/test/unit/org/openstreetmap/josm/command/ScaleCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/ScaleCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/ScaleCommandTest.java	(revision 10758)
@@ -133,5 +133,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(ScaleCommand.class).usingGetClass()
             .withPrefabValues(LatLon.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/SelectCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/SelectCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/SelectCommandTest.java	(revision 10758)
@@ -147,5 +147,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(SelectCommand.class).usingGetClass()
             .withPrefabValues(DataSet.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/SequenceCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/SequenceCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/SequenceCommandTest.java	(revision 10758)
@@ -170,5 +170,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(SequenceCommand.class).usingGetClass()
             .withPrefabValues(Command.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/TransformNodesCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/TransformNodesCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/TransformNodesCommandTest.java	(revision 10758)
@@ -30,5 +30,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(TransformNodesCommand.class).usingGetClass()
             .withPrefabValues(LatLon.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/conflict/ConflictAddCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/conflict/ConflictAddCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/conflict/ConflictAddCommandTest.java	(revision 10758)
@@ -76,5 +76,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(ConflictAddCommand.class).usingGetClass()
             .withPrefabValues(DataSet.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/conflict/ConflictResolveCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/conflict/ConflictResolveCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/conflict/ConflictResolveCommandTest.java	(revision 10758)
@@ -31,5 +31,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(ConflictResolveCommand.class).usingGetClass()
             .withPrefabValues(Conflict.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/conflict/CoordinateConflictResolveCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/conflict/CoordinateConflictResolveCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/conflict/CoordinateConflictResolveCommandTest.java	(revision 10758)
@@ -91,5 +91,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(CoordinateConflictResolveCommand.class).usingGetClass()
             .withPrefabValues(Conflict.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/conflict/DeletedStateConflictResolveCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/conflict/DeletedStateConflictResolveCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/conflict/DeletedStateConflictResolveCommandTest.java	(revision 10758)
@@ -32,5 +32,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(DeletedStateConflictResolveCommand.class).usingGetClass()
             .withPrefabValues(Conflict.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/conflict/ModifiedConflictResolveCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/conflict/ModifiedConflictResolveCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/conflict/ModifiedConflictResolveCommandTest.java	(revision 10758)
@@ -32,5 +32,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(ModifiedConflictResolveCommand.class).usingGetClass()
             .withPrefabValues(Conflict.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/conflict/RelationMemberConflictResolverCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/conflict/RelationMemberConflictResolverCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/conflict/RelationMemberConflictResolverCommandTest.java	(revision 10758)
@@ -32,5 +32,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(RelationMemberConflictResolverCommand.class).usingGetClass()
             .withPrefabValues(Relation.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/conflict/TagConflictResolveCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/conflict/TagConflictResolveCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/conflict/TagConflictResolveCommandTest.java	(revision 10758)
@@ -32,5 +32,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(TagConflictResolveCommand.class).usingGetClass()
             .withPrefabValues(Conflict.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/conflict/VersionConflictResolveCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/conflict/VersionConflictResolveCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/conflict/VersionConflictResolveCommandTest.java	(revision 10758)
@@ -32,5 +32,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(VersionConflictResolveCommand.class).usingGetClass()
             .withPrefabValues(Conflict.class,
Index: /trunk/test/unit/org/openstreetmap/josm/command/conflict/WayNodesConflictResolverCommandTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/command/conflict/WayNodesConflictResolverCommandTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/command/conflict/WayNodesConflictResolverCommandTest.java	(revision 10758)
@@ -32,5 +32,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(WayNodesConflictResolverCommand.class).usingGetClass()
             .withPrefabValues(Conflict.class,
Index: /trunk/test/unit/org/openstreetmap/josm/data/BoundsTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/BoundsTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/BoundsTest.java	(revision 10758)
@@ -15,5 +15,5 @@
 
     @Test
-    public void crossingTests() {
+    public void testCrossing() {
         Bounds b1 = new Bounds(0, 170, 50, -170);
         assertTrue(b1.crosses180thMeridian());
Index: /trunk/test/unit/org/openstreetmap/josm/data/coor/CachedLatLonTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/coor/CachedLatLonTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/coor/CachedLatLonTest.java	(revision 10758)
@@ -28,5 +28,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(CachedLatLon.class).usingGetClass()
             .suppress(Warning.NONFINAL_FIELDS)
Index: /trunk/test/unit/org/openstreetmap/josm/data/coor/LatLonTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/coor/LatLonTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/coor/LatLonTest.java	(revision 10758)
@@ -130,5 +130,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(LatLon.class).usingGetClass()
             .withPrefabValues(DecimalFormat.class, new DecimalFormat("00.0"), new DecimalFormat("00.000"))
Index: /trunk/test/unit/org/openstreetmap/josm/data/imagery/TemplatedWMSTileSourceTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/imagery/TemplatedWMSTileSourceTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/imagery/TemplatedWMSTileSourceTest.java	(revision 10758)
@@ -77,5 +77,5 @@
      */
     @Test
-    public void testEPSG4326_widebounds() {
+    public void testEPSG4326widebounds() {
         Main.setProjection(new CustomProjection("+proj=lonlat +datum=WGS84 +axis=neu +bounds=-180,53,180,54"));
         TemplatedWMSTileSource source = getSource();
@@ -89,5 +89,5 @@
      */
     @Test
-    public void testEPSG4326_narrowbounds() {
+    public void testEPSG4326narrowbounds() {
         Main.setProjection(new CustomProjection("+proj=lonlat +datum=WGS84 +axis=neu +bounds=18,-90,20,90"));
         TemplatedWMSTileSource source = getSource();
@@ -117,5 +117,5 @@
      */
     @Test
-    public void testEPSG3006_withbounds() {
+    public void testEPSG3006withbounds() {
         Main.setProjection(
                 new CustomProjection("+proj=utm +zone=33 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 "
@@ -132,5 +132,5 @@
      */
     @Test
-    public void testEPSG3006_withoutbounds() {
+    public void testEPSG3006withoutbounds() {
         Main.setProjection(
                 new CustomProjection("+proj=utm +zone=33 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 "
Index: /trunk/test/unit/org/openstreetmap/josm/data/imagery/WMTSTileSourceTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/imagery/WMTSTileSourceTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/imagery/WMTSTileSourceTest.java	(revision 10758)
@@ -215,5 +215,5 @@
 
     @Test
-    public void test12168() throws IOException {
+    public void testTicket12168() throws IOException {
         Main.setProjection(Projections.getProjectionByCode("EPSG:3857"));
         WMTSTileSource testSource = new WMTSTileSource(testImagery12168);
Index: /trunk/test/unit/org/openstreetmap/josm/data/notes/NoteTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/notes/NoteTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/notes/NoteTest.java	(revision 10758)
@@ -57,5 +57,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(Note.class).usingGetClass()
             .withIgnoredFields("latLon", "createdAt", "closedAt", "state", "comments")
Index: /trunk/test/unit/org/openstreetmap/josm/data/oauth/OAuthParametersTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/oauth/OAuthParametersTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/oauth/OAuthParametersTest.java	(revision 10758)
@@ -58,5 +58,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(OAuthParameters.class).usingGetClass().verify();
     }
Index: /trunk/test/unit/org/openstreetmap/josm/data/oauth/OAuthTokenTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/oauth/OAuthTokenTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/oauth/OAuthTokenTest.java	(revision 10758)
@@ -33,5 +33,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(OAuthToken.class).usingGetClass().verify();
     }
Index: /trunk/test/unit/org/openstreetmap/josm/data/osm/APIDataSetTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/osm/APIDataSetTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/osm/APIDataSetTest.java	(revision 10758)
@@ -28,5 +28,5 @@
 
     @Test
-    public void oneNewRelationOnly() {
+    public void testOneNewRelationOnly() {
         Relation r = new Relation();
         r.put("name", "r1");
@@ -48,5 +48,5 @@
 
     @Test
-    public void newParentChildPair() {
+    public void testNewParentChildPair() {
         DataSet ds = new DataSet();
         Relation r1 = new Relation();
@@ -75,5 +75,5 @@
 
     @Test
-    public void oneExistingAndThreNewInAChain() {
+    public void testOneExistingAndThreNewInAChain() {
         DataSet ds = new DataSet();
 
@@ -118,5 +118,5 @@
 
     @Test
-    public void oneParentTwoNewChildren() {
+    public void testOneParentTwoNewChildren() {
         DataSet ds = new DataSet();
         Relation r1 = new Relation();
@@ -151,5 +151,5 @@
 
     @Test // for ticket #9624
-    public void deleteOneParentTwoNewChildren() {
+    public void testDeleteOneParentTwoNewChildren() {
         DataSet ds = new DataSet();
         Relation r1 = new Relation(1);
@@ -198,5 +198,5 @@
 
     @Test // for ticket #9656
-    public void deleteWay() {
+    public void testDeleteWay() {
         DataSet ds = new DataSet();
         final Way way = new Way(1, 2);
@@ -239,5 +239,5 @@
 
     @Test
-    public void oneCycle() {
+    public void testOneCycle() {
         DataSet ds = new DataSet();
         Relation r1 = new Relation();
Index: /trunk/test/unit/org/openstreetmap/josm/data/osm/BBoxTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/osm/BBoxTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/osm/BBoxTest.java	(revision 10758)
@@ -26,5 +26,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(BBox.class).usingGetClass()
             .suppress(Warning.NONFINAL_FIELDS)
Index: /trunk/test/unit/org/openstreetmap/josm/data/osm/DataSetMergerTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/osm/DataSetMergerTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/osm/DataSetMergerTest.java	(revision 10758)
@@ -81,5 +81,5 @@
      */
     @Test
-    public void nodeSimple_IdenticalNoConflict() {
+    public void testNodeSimpleIdenticalNoConflict() {
         Node n = new Node(LatLon.ZERO);
         n.setOsmId(1, 1);
@@ -113,8 +113,7 @@
      * two  nodes, my is unmodified, their is updated and has a higher version
      * => their version is going to be the merged version
-     *
-     */
-    @Test
-    public void nodeSimple_locallyUnmodifiedNoConflict() {
+     */
+    @Test
+    public void testNodeSimpleLocallyUnmodifiedNoConflict() {
         Node n = new Node(LatLon.ZERO);
         n.setOsmId(1, 1);
@@ -156,5 +155,5 @@
      */
     @Test
-    public void nodeSimple_TagConflict() {
+    public void testNodeSimpleTagConflict() {
         Node n = new Node(LatLon.ZERO);
         n.setOsmId(1, 1);
@@ -190,5 +189,5 @@
      */
     @Test
-    public void nodeSimple_DeleteConflict() {
+    public void testNodeSimpleDeleteConflict() {
         Node n = new Node(1, 1);
         n.setCoor(LatLon.ZERO);
@@ -218,8 +217,7 @@
      * My node is deleted, their node has the same id and version and is not deleted.
      * => mine has precedence
-     *
-     */
-    @Test
-    public void nodeSimple_DeleteConflict_2() {
+     */
+    @Test
+    public void testNodeSimpleDeleteConflict2() {
         Node n = new Node(LatLon.ZERO);
         n.setOsmId(1, 1);
@@ -249,5 +247,5 @@
      */
     @Test
-    public void nodeSimple_DeleteConflict_3() {
+    public void testNodeSimpleDeleteConflict3() {
         Node n = new Node(new LatLon(1, 1));
         n.setDeleted(true);
@@ -270,8 +268,7 @@
      *
      * => take mine
-     *
-     */
-    @Test
-    public void nodeSimple_DeleteConflict_4() {
+     */
+    @Test
+    public void testNodeSimpleDeleteConflict4() {
         Node n = new Node(new LatLon(1, 1));
         n.setDeleted(true);
@@ -282,5 +279,4 @@
         their.addPrimitive(n1);
 
-
         DataSetMerger visitor = new DataSetMerger(my, their);
         visitor.merge();
@@ -297,8 +293,7 @@
      *
      * => merge it onto my node.
-     *
-     */
-    @Test
-    public void nodeSimple_NoIdSemanticallyEqual() {
+     */
+    @Test
+    public void testNodeSimpleNoIdSemanticallyEqual() {
 
         Calendar cal = GregorianCalendar.getInstance();
@@ -341,8 +336,7 @@
      *
      * => merge it onto my node. My node becomes complete
-     *
-     */
-    @Test
-    public void nodeSimple_IncompleteNode() {
+     */
+    @Test
+    public void testNodeSimpleIncompleteNode() {
 
         Node n = new Node(1);
@@ -373,8 +367,7 @@
      *
      * => merge it onto my way.
-     *
-     */
-    @Test
-    public void waySimple_IdenicalNodesDifferentTags() {
+     */
+    @Test
+    public void testWaySimpleIdenticalNodesDifferentTags() {
 
         // -- the target dataset
@@ -446,8 +439,7 @@
      *
      * => merge it onto my way, no conflict
-     *
-     */
-    @Test
-    public void waySimple_AdditionalNodesAndChangedNodes() {
+     */
+    @Test
+    public void testWaySimpleAdditionalNodesAndChangedNodes() {
 
         // -- my data set
@@ -516,8 +508,7 @@
      *
      * => merge onto my way not possible, create a conflict
-     *
-     */
-    @Test
-    public void waySimple_DifferentNodesAndMyIsModified() {
+     */
+    @Test
+    public void testWaySimpleDifferentNodesAndMyIsModified() {
 
         // -- the target dataset
@@ -581,8 +572,7 @@
      *
      * => conflict
-     *
-     */
-    @Test
-    public void waySimple_TheirVersionNotVisibleMyIsModified() {
+     */
+    @Test
+    public void testWaySimpleTheirVersionNotVisibleMyIsModified() {
 
         Node mn1 = new Node(LatLon.ZERO);
@@ -624,8 +614,7 @@
      * my and  their way are semantically equal. so technical attributes of
      * their way can be merged on my way. No conflict.
-     *
-     */
-    @Test
-    public void waySimple_twoWaysWithNoId_NodesWithId() {
+     */
+    @Test
+    public void testWaySimpleTwoWaysWithNoIdNodesWithId() {
 
         // -- my data set
@@ -682,8 +671,7 @@
      * my and  their way are semantically equal. so technical attributes of
      * their way can be merged on my way. No conflict.
-     *
-     */
-    @Test
-    public void waySimple_twoWaysWithNoId_NodesWithoutId() {
+     */
+    @Test
+    public void testWaySimpleTwoWaysWithNoIdNodesWithoutId() {
 
         // -- my data set
@@ -738,8 +726,7 @@
      * => the merged way should include all three nodes. Deleted node should have deleted=false and
      * special conflict with isDeleted should exist
-     *
-     */
-    @Test
-    public void wayComplex_mergingADeletedNode() {
+     */
+    @Test
+    public void testWayComplexMergingADeletedNode() {
 
         // -- my dataset
@@ -793,8 +780,7 @@
      * => the merged relation should include all three nodes. There should be conflict for deleted
      * node with isMyDeleted set
-     *
-     */
-    @Test
-    public void relationComplex_mergingADeletedNode() {
+     */
+    @Test
+    public void testRelationComplexMergingADeletedNode() {
 
         Node mn1 = new Node(LatLon.ZERO);
@@ -803,5 +789,4 @@
         my.addPrimitive(mn1);
 
-
         Node tn1 = new Node(LatLon.ZERO);
         tn1.setOsmId(1, 1);
@@ -815,5 +800,4 @@
         tn3.setOsmId(3, 1);
         their.addPrimitive(tn3);
-
 
         Relation theirRelation = new Relation();
@@ -847,5 +831,5 @@
      */
     @Test
-    public void newIncompleteWay() {
+    public void testNewIncompleteWay() {
 
         Node n1 = new Node(1);
@@ -889,5 +873,5 @@
      */
     @Test
-    public void incompleteWayOntoCompleteWay() {
+    public void testIncompleteWayOntoCompleteWay() {
 
         // an incomplete node
@@ -944,5 +928,5 @@
      */
     @Test
-    public void twoCompleteNodesOntoAnIncompleteWay() {
+    public void testTwoCompleteNodesOntoAnIncompleteWay() {
 
         // -- source dataset
Index: /trunk/test/unit/org/openstreetmap/josm/data/osm/FilterTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/osm/FilterTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/osm/FilterTest.java	(revision 10758)
@@ -6,5 +6,4 @@
 
 import java.io.FileInputStream;
-import java.io.IOException;
 import java.io.InputStream;
 import java.util.Arrays;
@@ -21,5 +20,4 @@
 import org.openstreetmap.josm.data.coor.LatLon;
 import org.openstreetmap.josm.gui.progress.NullProgressMonitor;
-import org.openstreetmap.josm.io.IllegalDataException;
 import org.openstreetmap.josm.io.OsmReader;
 
@@ -38,5 +36,5 @@
 
     @Test
-    public void basic() throws ParseError {
+    public void testBasic() throws ParseError {
         DataSet ds = new DataSet();
         Node n1 = new Node(LatLon.ZERO);
@@ -66,5 +64,5 @@
 
     @Test
-    public void filter() throws ParseError, IllegalDataException, IOException {
+    public void testFilter() throws Exception {
         for (int i : new int[] {1, 2, 3, 11, 12, 13, 14, 15}) {
             DataSet ds;
Index: /trunk/test/unit/org/openstreetmap/josm/data/osm/OsmPrimitiveKeyHandlingTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/osm/OsmPrimitiveKeyHandlingTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/osm/OsmPrimitiveKeyHandlingTest.java	(revision 10758)
@@ -31,5 +31,5 @@
      */
     @Test
-    public void emptyNode() {
+    public void testEmptyNode() {
         Node n = new Node();
         testKeysSize(n, 0);
@@ -45,5 +45,5 @@
      */
     @Test
-    public void put() {
+    public void testPut() {
         Node n = new Node();
         n.put("akey", "avalue");
@@ -57,5 +57,5 @@
      */
     @Test
-    public void put2() {
+    public void testPut2() {
         Node n = new Node();
         n.put("key.1", "value.1");
@@ -75,5 +75,5 @@
     @Test
     @SuppressFBWarnings(value = "DM_STRING_CTOR", justification = "test that equals is used and not ==")
-    public void remove() {
+    public void testRemove() {
         Node n = new Node();
         n.put("key.1", "value.1");
@@ -107,5 +107,5 @@
      */
     @Test
-    public void removeAll() {
+    public void testRemoveAll() {
         Node n = new Node();
 
@@ -122,5 +122,5 @@
      */
     @Test
-    public void hasEqualSemanticAttributes() {
+    public void testHasEqualSemanticAttributes() {
         Node n1 = new Node(1);
         n1.setCoor(LatLon.ZERO);
@@ -140,5 +140,5 @@
      */
     @Test
-    public void hasEqualSemanticAttributes_2() {
+    public void testHasEqualSemanticAttributes_2() {
         Node n1 = new Node(1);
         n1.setCoor(LatLon.ZERO);
Index: /trunk/test/unit/org/openstreetmap/josm/data/osm/OsmPrimitiveTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/osm/OsmPrimitiveTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/osm/OsmPrimitiveTest.java	(revision 10758)
@@ -42,5 +42,5 @@
 
     @Test
-    public void simpleReferrersTest() {
+    public void testSimpleReferrersTest() {
         Node n1 = new Node(LatLon.ZERO);
         Way w1 = new Way();
@@ -52,5 +52,5 @@
 
     @Test
-    public void addAndRemoveReferrer() {
+    public void testAddAndRemoveReferrer() {
         Node n1 = new Node(LatLon.ZERO);
         Node n2 = new Node(LatLon.ZERO);
@@ -68,5 +68,5 @@
 
     @Test
-    public void multipleReferrers() {
+    public void testMultipleReferrers() {
         Node n1 = new Node(LatLon.ZERO);
         Way w1 = new Way();
@@ -84,5 +84,5 @@
 
     @Test
-    public void removeMemberFromRelationReferrerTest() {
+    public void testRemoveMemberFromRelationReferrerTest() {
         Node n1 = new Node(LatLon.ZERO);
         Relation r1 = new Relation();
@@ -96,5 +96,5 @@
 
     @Test
-    public void setRelationMemberReferrerTest() {
+    public void testSetRelationMemberReferrerTest() {
         Node n1 = new Node(LatLon.ZERO);
         Node n2 = new Node(LatLon.ZERO);
@@ -113,5 +113,5 @@
 
     @Test
-    public void removePrimitiveReferrerTest() {
+    public void testRemovePrimitiveReferrerTest() {
         Node n1 = new Node(LatLon.ZERO);
         Way w1 = new Way();
@@ -135,5 +135,5 @@
 
     @Test
-    public void nodeFromMultipleDatasets() {
+    public void testNodeFromMultipleDatasets() {
         // n has two referrers - w1 and w2. But only w1 is returned because it is in the same dataset as n
         Node n = new Node(LatLon.ZERO);
@@ -150,5 +150,5 @@
 
     @Test(expected = DataIntegrityProblemException.class)
-    public void checkMustBeInDatasate() {
+    public void testCheckMustBeInDatasate() {
         Node n = new Node();
         n.getReferrers();
Index: /trunk/test/unit/org/openstreetmap/josm/data/osm/RelationTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/osm/RelationTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/osm/RelationTest.java	(revision 10758)
@@ -23,10 +23,10 @@
 
     @Test(expected = NullPointerException.class)
-    public void createNewRelation() {
+    public void testCreateNewRelation() {
         new Relation(null);
     }
 
     @Test
-    public void equalSemenaticsToNull() {
+    public void testEqualSemanticsToNull() {
         Relation relation = new Relation();
         assertFalse(relation.hasEqualTechnicalAttributes(null));
Index: /trunk/test/unit/org/openstreetmap/josm/data/projection/EllipsoidTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/projection/EllipsoidTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/projection/EllipsoidTest.java	(revision 10758)
@@ -19,5 +19,5 @@
      */
     @Test
-    public void latLon2Cart2LatLon() {
+    public void testLatLon2Cart2LatLon() {
         Random r = new Random(System.currentTimeMillis());
         double maxErrLat = 0, maxErrLon = 0;
Index: /trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRefTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRefTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRefTest.java	(revision 10758)
@@ -278,5 +278,5 @@
 
     @Test
-    public void test() throws IOException {
+    public void testProjections() throws IOException {
         StringBuilder fail = new StringBuilder();
         Set<String> allCodes = new HashSet<>(Projections.getAllProjectionCodes());
Index: /trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRegressionTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRegressionTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRegressionTest.java	(revision 10758)
@@ -164,5 +164,5 @@
      */
     @Test
-    public void regressionTest() throws IOException {
+    public void testNonRegression() throws IOException {
         List<TestData> allData = readData();
         Set<String> dataCodes = new HashSet<>();
Index: /trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionTest.java	(revision 10758)
@@ -24,5 +24,5 @@
 
     @Test
-    public void projections() {
+    public void testProjections() {
         error = false;
         text = "";
@@ -104,5 +104,5 @@
 
     @Test
-    public void projs() {
+    public void testProjs() {
         error2 = false;
         text2 = "";
Index: /trunk/test/unit/org/openstreetmap/josm/data/projection/SwissGridTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/projection/SwissGridTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/projection/SwissGridTest.java	(revision 10758)
@@ -13,5 +13,5 @@
 
 public class SwissGridTest {
-    public static final String SWISS_EPSG_CODE = "EPSG:21781";
+    private static final String SWISS_EPSG_CODE = "EPSG:21781";
     private boolean debug = false;
 
@@ -56,8 +56,8 @@
     }
 
-    public static final double EPSILON_APPROX = 1.5;
-    public static final double EPSILON_ACCURATE = 0.05;
-
-    public void projReferenceTest(final double epsilon) {
+    private static final double EPSILON_APPROX = 1.5;
+    private static final double EPSILON_ACCURATE = 0.05;
+
+    private void projReferenceTest(final double epsilon) {
         Projection swiss = Projections.getProjectionByCode("EPSG:21781"); // Swiss grid
         StringBuilder errs = new StringBuilder();
@@ -72,5 +72,5 @@
 
     @Test
-    public void projReferenceTestApprox() {
+    public void testProjReferenceTestApprox() {
         projReferenceTest(EPSILON_APPROX);
     }
@@ -78,5 +78,5 @@
     @Test
     @Ignore("high accuracy of epsilon=" + EPSILON_ACCURATE + " is not met")
-    public void projReferenceTestAccurate() {
+    public void testProjReferenceTestAccurate() {
         // TODO make this test pass
         projReferenceTest(EPSILON_ACCURATE);
@@ -84,5 +84,5 @@
 
     @Test
-    public void a_latlon2eastNorth_test() {
+    public void testAlatlon2eastNorth() {
         LatLon ll = new LatLon(46.518, 6.567);
         EastNorth en = Main.getProjection().latlon2eastNorth(ll);
@@ -127,5 +127,5 @@
 
     @Test
-    public void b_eastNorth2latlon_test() {
+    public void testBeastNorth2latlon() {
         EastNorth en = new EastNorth(533111.69, 152227.85);
         LatLon ll = Main.getProjection().eastNorth2latlon(en);
@@ -173,5 +173,5 @@
      */
     @Test
-    public void c_sendandreturn_test() {
+    public void testCsendandreturn() {
         EastNorth en = new EastNorth(533111.69, 152227.85);
         LatLon ll = Main.getProjection().eastNorth2latlon(en);
Index: /trunk/test/unit/org/openstreetmap/josm/data/validation/tests/DuplicateNodeTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/validation/tests/DuplicateNodeTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/validation/tests/DuplicateNodeTest.java	(revision 10758)
@@ -29,5 +29,5 @@
      */
     @Test
-    public void test() {
+    public void testDuplicateNode() {
         DataSet ds = new DataSet();
 
Index: /trunk/test/unit/org/openstreetmap/josm/data/validation/tests/MapCSSTagCheckerTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/validation/tests/MapCSSTagCheckerTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/validation/tests/MapCSSTagCheckerTest.java	(revision 10758)
@@ -86,5 +86,5 @@
 
     @Test
-    public void test10913() throws Exception {
+    public void testTicket10913() throws Exception {
         final OsmPrimitive p = OsmUtils.createPrimitive("way highway=tertiary construction=yes");
         final TagCheck check = TagCheck.readMapCSS(new StringReader("way {" +
@@ -101,5 +101,5 @@
 
     @Test
-    public void test9782() throws Exception {
+    public void testTicket9782() throws Exception {
         final MapCSSTagChecker test = buildTagChecker("*[/.+_name/][!name] {" +
                 "throwWarning: tr(\"has {0} but not {1}\", \"{0.key}\", \"{1.key}\");}");
@@ -112,5 +112,5 @@
 
     @Test
-    public void test10859() throws Exception {
+    public void testTicket10859() throws Exception {
         final MapCSSTagChecker test = buildTagChecker("way[highway=footway][foot?!] {\n" +
                 "  throwWarning: tr(\"{0} used with {1}\", \"{0.value}\", \"{1.tag}\");}");
Index: /trunk/test/unit/org/openstreetmap/josm/data/validation/tests/NameMismatchTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/validation/tests/NameMismatchTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/validation/tests/NameMismatchTest.java	(revision 10758)
@@ -35,5 +35,5 @@
      */
     @Test
-    public void test0() {
+    public void testCase0() {
         final List<TestError> errors = test("node name:de=Europa");
         assertEquals(1, errors.size());
@@ -45,5 +45,5 @@
      */
     @Test
-    public void test1() {
+    public void testCase1() {
         final List<TestError> errors = test("node name=Europe name:de=Europa");
         assertEquals(1, errors.size());
@@ -55,5 +55,5 @@
      */
     @Test
-    public void test2() {
+    public void testCase2() {
         final List<TestError> errors = test("node name=Europe name:de=Europa name:en=Europe");
         assertEquals(0, errors.size());
@@ -64,5 +64,5 @@
      */
     @Test
-    public void test3() {
+    public void testCase3() {
         List<TestError> errors;
         errors = test("node \"name\"=\"Italia - Italien - Italy\"");
Index: /trunk/test/unit/org/openstreetmap/josm/data/validation/tests/PublicTransportRouteTestTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/data/validation/tests/PublicTransportRouteTestTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/data/validation/tests/PublicTransportRouteTestTest.java	(revision 10758)
@@ -35,5 +35,5 @@
      */
     @Test
-    public void test() {
+    public void testVarious() {
         final List<Node> nodes = Arrays.asList(new Node(), new Node(), new Node(), new Node(), new Node(), new Node());
         final Way w1 = TestUtils.newWay("", nodes.get(0), nodes.get(1));
Index: /trunk/test/unit/org/openstreetmap/josm/gui/TableCellRendererTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/gui/TableCellRendererTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/gui/TableCellRendererTest.java	(revision 10758)
@@ -55,5 +55,5 @@
      */
     @Test
-    public void tableCellRendererTest() {
+    public void testTableCellRenderer() {
         Reflections reflections = new Reflections("org.openstreetmap.josm");
         Set<Class<? extends TableCellRenderer>> renderers = reflections.getSubTypesOf(TableCellRenderer.class);
Index: /trunk/test/unit/org/openstreetmap/josm/gui/conflict/pair/nodes/NodeListMergeModelTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/gui/conflict/pair/nodes/NodeListMergeModelTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/gui/conflict/pair/nodes/NodeListMergeModelTest.java	(revision 10758)
@@ -79,5 +79,5 @@
 
     @Test
-    public void test_copyMyNodesToTop_1() {
+    public void testCopyMyNodesToTop1() {
         NodeListMergeModel model = new NodeListMergeModel();
 
@@ -101,5 +101,5 @@
 
     @Test
-    public void test_copyMyNodesToTop_2() {
+    public void testCopyMyNodesToTop2() {
         NodeListMergeModel model = new NodeListMergeModel();
 
@@ -127,5 +127,5 @@
 
     @Test
-    public void test_copyMyNodesToTop_3() {
+    public void testCopyMyNodesToTop3() {
         NodeListMergeModel model = new NodeListMergeModel();
 
@@ -153,5 +153,5 @@
 
     @Test
-    public void test_copyMyNodesToTop_4() {
+    public void testCopyMyNodesToTop4() {
         NodeListMergeModel model = new NodeListMergeModel();
 
@@ -180,5 +180,5 @@
 
     @Test
-    public void test_copyMyNodesToEnd_1() {
+    public void testCopyMyNodesToEnd1() {
         NodeListMergeModel model = new NodeListMergeModel();
 
@@ -201,5 +201,5 @@
 
     @Test
-    public void test_copyMyNodesToEnd_2() {
+    public void testCopyMyNodesToEnd2() {
         NodeListMergeModel model = new NodeListMergeModel();
 
@@ -226,5 +226,5 @@
 
     @Test
-    public void test_copyMyNodesToEnd_3() {
+    public void testCopyMyNodesToEnd3() {
         NodeListMergeModel model = new NodeListMergeModel();
 
@@ -253,5 +253,5 @@
 
     @Test
-    public void test_copyMyNodesToEnd_4() {
+    public void testCopyMyNodesToEnd4() {
         NodeListMergeModel model = new NodeListMergeModel();
 
@@ -286,5 +286,5 @@
 
     @Test
-    public void test_copyMyNodesBeforeCurrent_1() {
+    public void testCopyMyNodesBeforeCurrent1() {
         NodeListMergeModel model = new NodeListMergeModel();
 
@@ -313,5 +313,5 @@
 
     @Test
-    public void test_copyMyNodesBeforeCurrent_2() {
+    public void testCopyMyNodesBeforeCurrent2() {
         NodeListMergeModel model = new NodeListMergeModel();
 
@@ -341,5 +341,5 @@
 
     @Test
-    public void test_copyMyNodesBeforeCurrent_3() {
+    public void testCopyMyNodesBeforeCurrent3() {
         NodeListMergeModel model = new NodeListMergeModel();
 
@@ -376,5 +376,5 @@
     /* ----------------------------------------------------------------------------- */
     @Test
-    public void test_copyMyNodesAfterCurrent_1() {
+    public void testCopyMyNodesAfterCurrent1() {
         NodeListMergeModel model = new NodeListMergeModel();
 
@@ -403,5 +403,5 @@
 
     @Test
-    public void test_copyMyNodesAfterCurrent_2() {
+    public void testCopyMyNodesAfterCurrent2() {
         NodeListMergeModel model = new NodeListMergeModel();
 
@@ -432,5 +432,5 @@
 
     @Test
-    public void test_copyMyNodesAfterCurrent_3() {
+    public void testCopyMyNodesAfterCurrent3() {
         NodeListMergeModel model = new NodeListMergeModel();
 
@@ -465,5 +465,5 @@
     /* ----------------------------------------------------------------------------- */
     @Test
-    public void test_moveUpMergedNodes_1() {
+    public void testMoveUpMergedNodes1() {
         NodeListMergeModel model = new NodeListMergeModel();
 
@@ -491,5 +491,5 @@
 
     @Test
-    public void test_moveUpMergedNodes_2() {
+    public void testMoveUpMergedNodes2() {
         NodeListMergeModel model = new NodeListMergeModel();
 
@@ -521,5 +521,5 @@
 
     @Test
-    public void test_moveUpMergedNodes_3() {
+    public void testMoveUpMergedNodes3() {
         NodeListMergeModel model = new NodeListMergeModel();
 
@@ -554,5 +554,5 @@
     /* ----------------------------------------------------------------------------- */
     @Test
-    public void test_moveDownMergedNodes_1() {
+    public void testMoveDownMergedNodes1() {
         NodeListMergeModel model = new NodeListMergeModel();
 
@@ -580,5 +580,5 @@
 
     @Test
-    public void test_moveDownMergedNodes_2() {
+    public void testMoveDownMergedNodes2() {
         NodeListMergeModel model = new NodeListMergeModel();
 
@@ -610,5 +610,5 @@
 
     @Test
-    public void test_moveDownMergedNodes_3() {
+    public void testMoveDownMergedNodes3() {
         NodeListMergeModel model = new NodeListMergeModel();
 
@@ -644,5 +644,5 @@
     @SuppressWarnings("unchecked")
     @Test
-    public void addPropertyChangeListener() {
+    public void testAddPropertyChangeListener() {
         NodeListMergeModel model = new NodeListMergeModel();
 
@@ -666,5 +666,5 @@
     @SuppressWarnings("unchecked")
     @Test
-    public void removePropertyChangeListener() {
+    public void testRemovePropertyChangeListener() {
         NodeListMergeModel model = new NodeListMergeModel();
 
@@ -690,5 +690,5 @@
     /* ----------------------------------------------------------------------------- */
     @Test
-    public void setFrozen() {
+    public void testSetFrozen() {
         NodeListMergeModel model = new NodeListMergeModel();
         model.setFrozen(true);
@@ -700,5 +700,5 @@
 
     @Test
-    public void setFrozenWithPropertyChangeNotification() {
+    public void testSetFrozenWithPropertyChangeNotification() {
         NodeListMergeModel model = new NodeListMergeModel();
 
Index: /trunk/test/unit/org/openstreetmap/josm/gui/conflict/pair/properties/PropertiesMergeModelTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/gui/conflict/pair/properties/PropertiesMergeModelTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/gui/conflict/pair/properties/PropertiesMergeModelTest.java	(revision 10758)
@@ -63,5 +63,5 @@
 
     @Test
-    public void populate() {
+    public void testPopulate() {
         DataSet d1 = new DataSet();
         DataSet d2 = new DataSet();
@@ -86,5 +86,5 @@
 
     @Test
-    public void decidingAboutCoords() {
+    public void testDecidingAboutCoords() {
         DataSet d1 = new DataSet();
         DataSet d2 = new DataSet();
Index: /trunk/test/unit/org/openstreetmap/josm/gui/conflict/pair/tags/TagMergeItemTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/gui/conflict/pair/tags/TagMergeItemTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/gui/conflict/pair/tags/TagMergeItemTest.java	(revision 10758)
@@ -27,5 +27,5 @@
 
     @Test
-    public void test_TagMergeItem() {
+    public void testTagMergeItem() {
         TagMergeItem item = new TagMergeItem("key", "myvalue", "theirvalue");
         assertEquals("key", item.getKey());
@@ -36,5 +36,5 @@
 
     @Test
-    public void test_TagMergeItem_2() {
+    public void testTagMergeItem2() {
         Node n1 = new Node(1);
         Node n2 = new Node(1);
@@ -50,5 +50,5 @@
 
     @Test
-    public void test_TagMergeItem_3() {
+    public void testTagMergeItem3() {
         Node n1 = new Node(1);
         Node n2 = new Node(1);
@@ -64,5 +64,5 @@
 
     @Test
-    public void test_TagMergeItem_4() {
+    public void testTagMergeItem4() {
         Node n1 = new Node(1);
         Node n2 = new Node(1);
@@ -79,5 +79,5 @@
 
     @Test
-    public void test_decide() {
+    public void testDecide() {
         TagMergeItem item = new TagMergeItem("key", "myvalue", "theirvalue");
         item.decide(MergeDecisionType.KEEP_MINE);
@@ -86,5 +86,5 @@
 
     @Test
-    public void test_decide_1() {
+    public void testDecide1() {
         TagMergeItem item = new TagMergeItem("key", "myvalue", "theirvalue");
         try {
@@ -98,5 +98,5 @@
 
     @Test
-    public void test_applyToMyPrimitive() {
+    public void testApplyToMyPrimitive() {
         TagMergeItem item = new TagMergeItem("key", "myvalue", "theirvalue");
         item.decide(MergeDecisionType.KEEP_MINE);
@@ -113,5 +113,5 @@
 
     @Test
-    public void test_applyToMyPrimitive_2() {
+    public void testApplyToMyPrimitive2() {
         TagMergeItem item = new TagMergeItem("key", "myvalue", "theirvalue");
         item.decide(MergeDecisionType.KEEP_THEIR);
@@ -128,5 +128,5 @@
 
     @Test
-    public void test_applyToMyPrimitive_3() {
+    public void testApplyToMyPrimitive3() {
         TagMergeItem item = new TagMergeItem("key", "myvalue", "theirvalue");
         // item is undecided
@@ -145,5 +145,5 @@
 
     @Test
-    public void test_applyToMyPrimitive_4() {
+    public void testApplyToMyPrimitive4() {
         TagMergeItem item = new TagMergeItem("key", "myvalue", "theirvalue");
 
Index: /trunk/test/unit/org/openstreetmap/josm/gui/conflict/pair/tags/TagMergeModelTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/gui/conflict/pair/tags/TagMergeModelTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/gui/conflict/pair/tags/TagMergeModelTest.java	(revision 10758)
@@ -32,5 +32,5 @@
 
     @Test
-    public void addPropertyChangeListener() {
+    public void testAddPropertyChangeListener() {
         TagMergeModel model = new TagMergeModel();
         PropertyChangeListener listener = new PropertyChangeListener() {
@@ -50,5 +50,5 @@
 
     @Test
-    public void removePropertyChangeListener() {
+    public void testRemovePropertyChangeListener() {
         TagMergeModel model = new TagMergeModel();
         PropertyChangeListener listener = new PropertyChangeListener() {
@@ -69,5 +69,5 @@
 
     @Test
-    public void populateNoConflichts() {
+    public void testPopulateNoConflichts() {
         Node my = new Node(1);
         Node their = new Node(1);
@@ -84,5 +84,5 @@
 
     @Test
-    public void populateNoConflicts1() {
+    public void testPopulateNoConflicts1() {
         Node my = new Node(1);
         my.put("key", "value");
@@ -101,5 +101,5 @@
 
     @Test
-    public void populateMissingKeyMine() {
+    public void testPopulateMissingKeyMine() {
         Node my = new Node(1);
         Node their = new Node(1);
@@ -122,5 +122,5 @@
 
     @Test
-    public void populateMissingKeyTheir() {
+    public void testPopulateMissingKeyTheir() {
         Node my = new Node(1);
         my.put("key", "value");
@@ -143,5 +143,5 @@
 
     @Test
-    public void populateConflictingValues() {
+    public void testPopulateConflictingValues() {
         Node my = new Node(1);
         my.put("key", "myvalue");
@@ -165,5 +165,5 @@
 
     @Test
-    public void addItem() {
+    public void testAddItem() {
         TagMergeItem item = new TagMergeItem("key", "myvalue", "theirvalue");
         TagMergeModel model = new TagMergeModel();
@@ -184,5 +184,5 @@
 
     @Test
-    public void decide() {
+    public void testDecide() {
         TagMergeItem item = new TagMergeItem("key", "myvalue", "theirvalue");
         TagMergeModel model = new TagMergeModel();
@@ -211,5 +211,5 @@
 
     @Test
-    public void decideMultiple() {
+    public void testDecideMultiple() {
 
         TagMergeModel model = new TagMergeModel();
Index: /trunk/test/unit/org/openstreetmap/josm/gui/dialogs/properties/RecentTagCollectionTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/gui/dialogs/properties/RecentTagCollectionTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/gui/dialogs/properties/RecentTagCollectionTest.java	(revision 10758)
@@ -36,5 +36,5 @@
      */
     @Test
-    public void test() throws SearchCompiler.ParseError {
+    public void testVarious() throws SearchCompiler.ParseError {
         final RecentTagCollection recentTags = new RecentTagCollection(2);
         assertTrue(recentTags.isEmpty());
@@ -76,5 +76,4 @@
         recentTags.ignoreTag(new Tag("name", /*all values */""), searchSetting);
         assertEquals(Collections.emptyList(), recentTags.toList());
-
     }
 }
Index: /trunk/test/unit/org/openstreetmap/josm/gui/preferences/ToolbarPreferencesTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/gui/preferences/ToolbarPreferencesTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/gui/preferences/ToolbarPreferencesTest.java	(revision 10758)
@@ -58,5 +58,5 @@
 
     @Test
-    public void test1() {
+    public void testCase1() {
         Map<String, Action> actions = new HashMap<>();
         actions.put("action", new TestAction());
Index: /trunk/test/unit/org/openstreetmap/josm/gui/preferences/advanced/PrefEntryTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/gui/preferences/advanced/PrefEntryTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/gui/preferences/advanced/PrefEntryTest.java	(revision 10758)
@@ -54,5 +54,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(PrefEntry.class).usingGetClass()
             .withIgnoredFields("value", "defaultValue", "isDefault", "changed")
Index: /trunk/test/unit/org/openstreetmap/josm/gui/tagging/presets/TaggingPresetReaderTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/gui/tagging/presets/TaggingPresetReaderTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/gui/tagging/presets/TaggingPresetReaderTest.java	(revision 10758)
@@ -40,5 +40,5 @@
      */
     @Test
-    public void test8954() throws SAXException, IOException {
+    public void testTicket8954() throws SAXException, IOException {
         String presetfile = TestUtils.getRegressionDataFile(8954, "preset.xml");
         final Collection<TaggingPreset> presets = TaggingPresetReader.readAll(presetfile, false);
@@ -72,5 +72,5 @@
      */
     @Test
-    public void readDefaulPresets() throws SAXException, IOException {
+    public void testReadDefaulPresets() throws SAXException, IOException {
         String presetfile = "resource://data/defaultpresets.xml";
         final Collection<TaggingPreset> presets = TaggingPresetReader.readAll(presetfile, true);
Index: /trunk/test/unit/org/openstreetmap/josm/io/NmeaReaderTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/io/NmeaReaderTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/io/NmeaReaderTest.java	(revision 10758)
@@ -36,5 +36,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(NMEA_TYPE.class).verify();
     }
Index: /trunk/test/unit/org/openstreetmap/josm/io/remotecontrol/DNSNameTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/io/remotecontrol/DNSNameTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/io/remotecontrol/DNSNameTest.java	(revision 10758)
@@ -39,5 +39,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(DNSName.class).suppress(Warning.NULL_FIELDS).verify();
     }
Index: /trunk/test/unit/org/openstreetmap/josm/plugins/PluginHandlerTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/plugins/PluginHandlerTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/plugins/PluginHandlerTest.java	(revision 10758)
@@ -37,5 +37,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(DeprecatedPlugin.class).usingGetClass().verify();
     }
Index: /trunk/test/unit/org/openstreetmap/josm/tools/MultiMapTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/tools/MultiMapTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/tools/MultiMapTest.java	(revision 10758)
@@ -20,5 +20,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(MultiMap.class).usingGetClass().verify();
     }
Index: /trunk/test/unit/org/openstreetmap/josm/tools/PairTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/tools/PairTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/tools/PairTest.java	(revision 10758)
@@ -16,5 +16,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(Pair.class).suppress(Warning.NONFINAL_FIELDS).verify();
     }
Index: /trunk/test/unit/org/openstreetmap/josm/tools/TextTagParserTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/tools/TextTagParserTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/tools/TextTagParserTest.java	(revision 10758)
@@ -114,5 +114,5 @@
      */
     @Test
-    public void errorDetect() {
+    public void testErrorDetect() {
         String txt = "a=2 b=3 4";
         Map<String, String> tags = TextTagParser.readTagsFromText(txt);
Index: /trunk/test/unit/org/openstreetmap/josm/tools/UtilsTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/tools/UtilsTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/tools/UtilsTest.java	(revision 10758)
@@ -155,5 +155,5 @@
      */
     @Test
-    public void joinAsHtmlUnorderedList() {
+    public void testJoinAsHtmlUnorderedList() {
         List<? extends Object> items = Arrays.asList("1", Integer.valueOf(2));
         assertEquals("<ul><li>1</li><li>2</li></ul>", Utils.joinAsHtmlUnorderedList(items));
Index: /trunk/test/unit/org/openstreetmap/josm/tools/WindowGeometryTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/tools/WindowGeometryTest.java	(revision 10757)
+++ /trunk/test/unit/org/openstreetmap/josm/tools/WindowGeometryTest.java	(revision 10758)
@@ -146,5 +146,5 @@
      */
     @Test
-    public void equalsContract() {
+    public void testEqualsContract() {
         EqualsVerifier.forClass(WindowGeometry.class).usingGetClass()
             .suppress(Warning.NONFINAL_FIELDS)
