diff options
author | Christian Halstrick <christian.halstrick@sap.com> | 2014-03-12 15:52:38 +0100 |
---|---|---|
committer | Christian Halstrick <christian.halstrick@sap.com> | 2014-03-12 16:03:20 +0100 |
commit | f1d8ce1dce9502d0d7a6383a1cff9693c178f245 (patch) | |
tree | e28a7da07514d269a4fbb0162cf596dae248f8e0 | |
parent | efd91ef8a7e9d97fab08a6b9a5e181c846b744cb (diff) | |
download | jgit-f1d8ce1dce9502d0d7a6383a1cff9693c178f245.tar.gz jgit-f1d8ce1dce9502d0d7a6383a1cff9693c178f245.zip |
Rename test class so it is also executed during maven test phase
One specific test was executed when running tests from inside eclipse
(e.g. by using one of our checked in launch configurations). But when
running tests from maven this test was not executed. Maven (the surefire
plugin) looks for Tests only in java files which are named like
"Test*.java", "*Test.java" or "*TestCase.java". Tests in files named
"*Tests.java" are not found.
Change-Id: I62a80fd6e6fda8bd76fdf3f3f2b8cbc56460fb2c
-rw-r--r-- | org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CommitAndLogCommandTest.java (renamed from org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CommitAndLogCommandTests.java) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CommitAndLogCommandTests.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CommitAndLogCommandTest.java index 79d8f60441..7b3d4f6900 100644 --- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CommitAndLogCommandTests.java +++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CommitAndLogCommandTest.java @@ -72,7 +72,7 @@ import org.junit.Test; /** * Testing the git commit and log commands */ -public class CommitAndLogCommandTests extends RepositoryTestCase { +public class CommitAndLogCommandTest extends RepositoryTestCase { @Test public void testSomeCommits() throws JGitInternalException, IOException, GitAPIException { |