]> source.dussan.org Git - jgit.git/commitdiff
NoteMapTest: Add missing @Test annotations 03/53103/2
authorDave Borowitz <dborowitz@google.com>
Mon, 3 Aug 2015 20:58:39 +0000 (13:58 -0700)
committerMatthias Sohn <matthias.sohn@sap.com>
Thu, 25 Aug 2016 22:12:32 +0000 (00:12 +0200)
The RepositoryTestCase hierarchy no longer comes from TestCase, so all
test methods must have @Test.

Fix one test that was broken but never run; fortunately this was just
a typo in the test code.

Change-Id: I3ac8ccdab5e2d5539c63d7b0a88d8bdb0c5ff66e
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
org.eclipse.jgit.test/tst/org/eclipse/jgit/notes/NoteMapTest.java

index 47b08a7e16dbd6ee25c0b158df170b5e275844e0..325c9e2eba6ea0b3dbb3f0297ca2f15d383ed237 100644 (file)
@@ -449,11 +449,13 @@ public class NoteMapTest extends RepositoryTestCase {
                assertEquals("empty tree", empty, n.getTree());
        }
 
+       @Test
        public void testIteratorEmptyMap() {
                Iterator<Note> it = NoteMap.newEmptyMap().iterator();
                assertFalse(it.hasNext());
        }
 
+       @Test
        public void testIteratorFlatTree() throws Exception {
                RevBlob a = tr.blob("a");
                RevBlob b = tr.blob("b");
@@ -472,6 +474,7 @@ public class NoteMapTest extends RepositoryTestCase {
                assertEquals(2, count(it));
        }
 
+       @Test
        public void testIteratorFanoutTree2_38() throws Exception {
                RevBlob a = tr.blob("a");
                RevBlob b = tr.blob("b");
@@ -490,6 +493,7 @@ public class NoteMapTest extends RepositoryTestCase {
                assertEquals(2, count(it));
        }
 
+       @Test
        public void testIteratorFanoutTree2_2_36() throws Exception {
                RevBlob a = tr.blob("a");
                RevBlob b = tr.blob("b");
@@ -508,6 +512,7 @@ public class NoteMapTest extends RepositoryTestCase {
                assertEquals(2, count(it));
        }
 
+       @Test
        public void testIteratorFullyFannedOut() throws Exception {
                RevBlob a = tr.blob("a");
                RevBlob b = tr.blob("b");
@@ -526,12 +531,13 @@ public class NoteMapTest extends RepositoryTestCase {
                assertEquals(2, count(it));
        }
 
+       @Test
        public void testShorteningNoteRefName() throws Exception {
                String expectedShortName = "review";
                String noteRefName = Constants.R_NOTES + expectedShortName;
                assertEquals(expectedShortName, NoteMap.shortenRefName(noteRefName));
                String nonNoteRefName = Constants.R_HEADS + expectedShortName;
-               assertEquals(nonNoteRefName, NoteMap.shortenRefName(expectedShortName));
+               assertEquals(nonNoteRefName, NoteMap.shortenRefName(nonNoteRefName));
        }
 
        private RevCommit commitNoteMap(NoteMap map) throws IOException {