Explorar el Código

Merge "Add one more test to ReadTreeTest"

tags/v0.9.1
Chris Aniszczyk hace 13 años
padre
commit
77f79659f5
Se han modificado 1 ficheros con 14 adiciones y 0 borrados
  1. 14
    0
      org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/ReadTreeTest.java

+ 14
- 0
org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/ReadTreeTest.java Ver fichero

@@ -657,6 +657,20 @@ public abstract class ReadTreeTest extends RepositoryTestCase {
assertTrue(new File(trash, "foo").isFile());
}

public void testDontOverwriteDirtyFile() throws IOException {
setupCase(mk("foo"), mk("other"), mk("foo"));
writeTrashFile("foo", "different");
try {
checkout();
fail("Didn't got the expected conflict");
} catch (CheckoutConflictException e) {
assertIndex(mk("foo"));
assertWorkDir(mkmap("foo", "different"));
assertTrue(getConflicts().equals(Arrays.asList("foo")));
assertTrue(new File(trash, "foo").isFile());
}
}

/**
* The interface these tests need from a class implementing a checkout
*/

Cargando…
Cancelar
Guardar