From 61e1645e04a45cbf657d4b8c81bd61242531043b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Ar=C3=A8s?= Date: Wed, 16 Sep 2015 12:54:24 -0400 Subject: [PATCH] Fix integer boxing eclipse warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There was this warning because private assertEquals(Object, Object) method was shadowing JUnit assertEquals methods. Change-Id: I889bfe1d8c48210d9a42147a523c4829c5b5d1e3 Signed-off-by: Hugo Arès --- .../org/eclipse/jgit/pgm/CheckoutTest.java | 37 +++++++++---------- 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/org.eclipse.jgit.pgm.test/tst/org/eclipse/jgit/pgm/CheckoutTest.java b/org.eclipse.jgit.pgm.test/tst/org/eclipse/jgit/pgm/CheckoutTest.java index cef9b9e1a..387eb2bbb 100644 --- a/org.eclipse.jgit.pgm.test/tst/org/eclipse/jgit/pgm/CheckoutTest.java +++ b/org.eclipse.jgit.pgm.test/tst/org/eclipse/jgit/pgm/CheckoutTest.java @@ -43,6 +43,7 @@ package org.eclipse.jgit.pgm; import static org.junit.Assert.assertArrayEquals; +import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import java.io.File; @@ -59,7 +60,6 @@ import org.eclipse.jgit.treewalk.FileTreeIterator.FileEntry; import org.eclipse.jgit.treewalk.TreeWalk; import org.eclipse.jgit.util.FileUtils; -import org.junit.Assert; import org.junit.Test; public class CheckoutTest extends CLIRepositoryTestCase { @@ -68,7 +68,8 @@ public class CheckoutTest extends CLIRepositoryTestCase { public void testCheckoutSelf() throws Exception { new Git(db).commit().setMessage("initial commit").call(); - assertEquals("Already on 'master'", execute("git checkout master")); + assertStringArrayEquals("Already on 'master'", + execute("git checkout master")); } @Test @@ -76,20 +77,21 @@ public void testCheckoutBranch() throws Exception { new Git(db).commit().setMessage("initial commit").call(); new Git(db).branchCreate().setName("side").call(); - assertEquals("Switched to branch 'side'", execute("git checkout side")); + assertStringArrayEquals("Switched to branch 'side'", + execute("git checkout side")); } @Test public void testCheckoutNewBranch() throws Exception { new Git(db).commit().setMessage("initial commit").call(); - assertEquals("Switched to a new branch 'side'", + assertStringArrayEquals("Switched to a new branch 'side'", execute("git checkout -b side")); } @Test public void testCheckoutNonExistingBranch() throws Exception { - assertEquals( + assertStringArrayEquals( "error: pathspec 'side' did not match any file(s) known to git.", execute("git checkout side")); } @@ -98,19 +100,20 @@ public void testCheckoutNonExistingBranch() throws Exception { public void testCheckoutNewBranchThatAlreadyExists() throws Exception { new Git(db).commit().setMessage("initial commit").call(); - assertEquals("fatal: A branch named 'master' already exists.", + assertStringArrayEquals( + "fatal: A branch named 'master' already exists.", execute("git checkout -b master")); } @Test public void testCheckoutNewBranchOnBranchToBeBorn() throws Exception { - assertEquals("fatal: You are on a branch yet to be born", + assertStringArrayEquals("fatal: You are on a branch yet to be born", execute("git checkout -b side")); } @Test public void testCheckoutUnresolvedHead() throws Exception { - assertEquals( + assertStringArrayEquals( "error: pathspec 'HEAD' did not match any file(s) known to git.", execute("git checkout HEAD")); } @@ -119,7 +122,7 @@ public void testCheckoutUnresolvedHead() throws Exception { public void testCheckoutHead() throws Exception { new Git(db).commit().setMessage("initial commit").call(); - assertEquals("", execute("git checkout HEAD")); + assertStringArrayEquals("", execute("git checkout HEAD")); } @Test @@ -139,10 +142,10 @@ public void testCheckoutExistingBranchWithConflict() throws Exception { git.add().addFilepattern(".").call(); String[] execute = execute("git checkout branch_1"); - Assert.assertEquals( + assertEquals( "error: Your local changes to the following files would be overwritten by checkout:", execute[0]); - Assert.assertEquals("\ta", execute[1]); + assertEquals("\ta", execute[1]); } /** @@ -193,7 +196,7 @@ public void testCheckoutOrphan() throws Exception { Git git = new Git(db); git.commit().setMessage("initial commit").call(); - assertEquals("Switched to a new branch 'new_branch'", + assertStringArrayEquals("Switched to a new branch 'new_branch'", execute("git checkout --orphan new_branch")); assertEquals("refs/heads/new_branch", db.getRef("HEAD").getTarget().getName()); RevCommit commit = git.commit().setMessage("orphan commit").call(); @@ -553,17 +556,13 @@ public void fileModeTestFileWithFolderInIndex() throws Exception { // assertEquals("a/c", exception.getConflictingPaths().get(1)); } - static private void assertEquals(Object expected, Object actual) { - Assert.assertEquals(expected, actual); - } - - static private void assertEquals(String expected, String[] actual) { + static private void assertStringArrayEquals(String expected, String[] actual) { // if there is more than one line, ignore last one if empty - Assert.assertEquals( + assertEquals( 1, actual.length > 1 && actual[actual.length - 1].equals("") ? actual.length - 1 : actual.length); - Assert.assertEquals(expected, actual[0]); + assertEquals(expected, actual[0]); } @Test