From f0a485d5a2d944563b0ff8533d9a9809ceaad3bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Ar=C3=A8s?= Date: Wed, 1 Jun 2016 15:56:18 -0400 Subject: [PATCH] Add missing @Test annotations MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ie5ffcbf18233dc9b3eb232f714b5b58b6b93f4e0 Signed-off-by: Hugo Arès --- .../tst/org/eclipse/jgit/pgm/CloneTest.java | 1 + .../tst/org/eclipse/jgit/api/PathCheckoutCommandTest.java | 1 + 2 files changed, 2 insertions(+) diff --git a/org.eclipse.jgit.pgm.test/tst/org/eclipse/jgit/pgm/CloneTest.java b/org.eclipse.jgit.pgm.test/tst/org/eclipse/jgit/pgm/CloneTest.java index fe80388c0..2c0abd78a 100644 --- a/org.eclipse.jgit.pgm.test/tst/org/eclipse/jgit/pgm/CloneTest.java +++ b/org.eclipse.jgit.pgm.test/tst/org/eclipse/jgit/pgm/CloneTest.java @@ -135,6 +135,7 @@ public void testCloneIntoCurrentDir() throws Exception { assertEquals("expected 1 branch", 1, branches.size()); } + @Test public void testCloneBare() throws Exception { createInitialCommit(); diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/PathCheckoutCommandTest.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/PathCheckoutCommandTest.java index 3343af06d..125077372 100644 --- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/PathCheckoutCommandTest.java +++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/PathCheckoutCommandTest.java @@ -271,6 +271,7 @@ public static void validateIndex(Git git) throws NoWorkTreeException, } } + @Test public void testCheckoutMixedNewlines() throws Exception { // "git config core.autocrlf true" StoredConfig config = git.getRepository().getConfig();