summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Kossakowski <grek@google.com>2009-08-14 18:32:08 -0700
committerGrzegorz Kossakowski <grek@google.com>2009-08-14 18:32:08 -0700
commit143bd3d7b7ec0299d5fc999b72749e8c4e2e0104 (patch)
tree0d0f3b69a902e56ea653be29a6d7dbdb44ac5b3e
parent17100d842eda18c6a56da1cd8af779d1e8132a28 (diff)
downloadgimd-143bd3d7b7ec0299d5fc999b72749e8c4e2e0104.tar.gz
Make AbstractJGitTestCase class abstract.
JUnit tries to run every class that contains any JUnit annotation and is not abstract. For AbstractJGitTestCase it fails as there are no tests implemented in it. Signed-off-by: Grzegorz Kossakowski <grek@google.com>
-rw-r--r--src/test/scala/com/google/gimd/jgit/AbstractJGitTestCase.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/scala/com/google/gimd/jgit/AbstractJGitTestCase.scala b/src/test/scala/com/google/gimd/jgit/AbstractJGitTestCase.scala
index ab1562f..ad8f110 100644
--- a/src/test/scala/com/google/gimd/jgit/AbstractJGitTestCase.scala
+++ b/src/test/scala/com/google/gimd/jgit/AbstractJGitTestCase.scala
@@ -18,7 +18,7 @@ package com.google.gimd.jgit
import java.io.{ByteArrayInputStream, IOException, File}
import org.junit.{After, Before}
import org.spearce.jgit.lib._
-class AbstractJGitTestCase {
+abstract class AbstractJGitTestCase {
private val repositoryPath = "test-repository/.git"