]> source.dussan.org Git - jgit.git/commitdiff
Cleanup existing tests 67/127967/3
authorRené Scheibe <rene.scheibe@gmail.com>
Thu, 23 Aug 2018 21:42:02 +0000 (23:42 +0200)
committerRené Scheibe <rene.scheibe@gmail.com>
Fri, 24 Aug 2018 20:39:07 +0000 (22:39 +0200)
Renamed and restructured tests for improved clarity.

Bug: 479266
Change-Id: Ic9d05ddf722bddd148fa9d9c19248dd53d97f1e4
Signed-off-by: René Scheibe <rene.scheibe@gmail.com>
org.eclipse.jgit.test/tst/org/eclipse/jgit/api/ResetCommandTest.java

index 8f56a9270e2861c43fbb090ff14bcbcf83066ce9..e10a91c5d837820783011f5b7256fc239a75b929 100644 (file)
@@ -179,31 +179,29 @@ public class ResetCommandTest extends RepositoryTestCase {
        }
 
        @Test
-       public void testHardResetWithConflicts_DoOverWriteUntrackedFile()
-                       throws JGitInternalException,
-                       AmbiguousObjectException, IOException, GitAPIException {
+       public void testHardResetWithConflicts_OverwriteUntrackedFile() throws Exception {
                setupRepository();
+
                git.rm().setCached(true).addFilepattern("a.txt").call();
                assertTrue(new File(db.getWorkTree(), "a.txt").exists());
-               git.reset().setMode(ResetType.HARD).setRef(Constants.HEAD)
-                               .call();
+
+               git.reset().setMode(ResetType.HARD).setRef(Constants.HEAD).call();
                assertTrue(new File(db.getWorkTree(), "a.txt").exists());
                assertEquals("content", read(new File(db.getWorkTree(), "a.txt")));
        }
 
        @Test
-       public void testHardResetWithConflicts_DoDeleteFileFolderConflicts()
-                       throws JGitInternalException,
-                       AmbiguousObjectException, IOException, GitAPIException {
+       public void testHardResetWithConflicts_DeleteFileFolderConflict() throws Exception {
                setupRepository();
-               writeTrashFile("d/c.txt", "x");
-               git.add().addFilepattern("d/c.txt").call();
-               FileUtils.delete(new File(db.getWorkTree(), "d"), FileUtils.RECURSIVE);
-               writeTrashFile("d", "y");
 
-               git.reset().setMode(ResetType.HARD).setRef(Constants.HEAD)
-                               .call();
-               assertFalse(new File(db.getWorkTree(), "d").exists());
+               writeTrashFile("dir-or-file/c.txt", "content");
+               git.add().addFilepattern("dir-or-file/c.txt").call();
+
+               FileUtils.delete(new File(db.getWorkTree(), "dir-or-file"), FileUtils.RECURSIVE);
+               writeTrashFile("dir-or-file", "content");
+
+               git.reset().setMode(ResetType.HARD).setRef(Constants.HEAD).call();
+               assertFalse(new File(db.getWorkTree(), "dir-or-file").exists());
        }
 
        @Test