aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2017-02-14 00:21:01 -0500
committerChristopher Vogt <oss.nsp@cvogt.org>2017-02-14 00:34:48 -0500
commit6b7ccbe48f858e8c5d075672db85caa9dd44bd19 (patch)
treea78e67d2856a410a0fe9a71b5802034260a72703
parente0c12a39e634bc88d0128992eabb16fa3b38b3b4 (diff)
downloadcbt-6b7ccbe48f858e8c5d075672db85caa9dd44bd19.tar.gz
cbt-6b7ccbe48f858e8c5d075672db85caa9dd44bd19.tar.bz2
cbt-6b7ccbe48f858e8c5d075672db85caa9dd44bd19.zip
minor whitespace and name changes
-rw-r--r--plugins/scalatest/ScalaTest.scala12
-rw-r--r--stage2/BasicBuild.scala7
2 files changed, 10 insertions, 9 deletions
diff --git a/plugins/scalatest/ScalaTest.scala b/plugins/scalatest/ScalaTest.scala
index 21f656b..7f805fd 100644
--- a/plugins/scalatest/ScalaTest.scala
+++ b/plugins/scalatest/ScalaTest.scala
@@ -27,16 +27,16 @@ object ScalaTestLib{
}
}
- def discoverSuites(discoveryPath: File, _classLoader: ClassLoader): Seq[String] = {
- _classLoader
+ def discoverSuites(discoveryPath: File, classLoader: ClassLoader): Seq[String] = {
+ classLoader
.loadClass("org.scalatest.tools.SuiteDiscoveryHelper")
.getMethod("discoverSuiteNames", classOf[List[_]], classOf[ClassLoader], classOf[Option[_]])
- .invoke(null, List(discoveryPath.string ++ "/"), _classLoader, None)
+ .invoke(null, List(discoveryPath.string ++ "/"), classLoader, None)
.asInstanceOf[Set[String]]
.to
}
- def loadSuite(name: String, _classLoader: ClassLoader) = {
- _classLoader.loadClass(name).getConstructor().newInstance().asInstanceOf[Suite]
- }
+ def loadSuite(name: String, classLoader: ClassLoader) = {
+ classLoader.loadClass(name).getConstructor().newInstance().asInstanceOf[Suite]
+ }
}
diff --git a/stage2/BasicBuild.scala b/stage2/BasicBuild.scala
index 4ac1903..5212270 100644
--- a/stage2/BasicBuild.scala
+++ b/stage2/BasicBuild.scala
@@ -125,9 +125,9 @@ trait BaseBuild extends BuildInterface with DependencyImplementation with Trigge
def resourceClasspath: ClassPath = {
val resourcesDirectory = projectDirectory ++ "/resources"
- ClassPath( if(resourcesDirectory.exists) Seq(resourcesDirectory) else Nil )
+ ClassPath(Seq(resourcesDirectory).filter(_.exists))
}
- def exportedClasspath : ClassPath = {
+ def exportedClasspath: ClassPath = {
compile
ClassPath(Seq(compileTarget).filter(_.exists)) ++ resourceClasspath
}
@@ -189,6 +189,7 @@ trait BaseBuild extends BuildInterface with DependencyImplementation with Trigge
Some(new lib.ReflectBuild(
DirectoryDependency(projectDirectory++"/test").build
).callNullary(Some("run")))
+
def t = test
def rt = recursiveUnsafe(Some("test"))
@@ -230,7 +231,7 @@ trait BaseBuild extends BuildInterface with DependencyImplementation with Trigge
ExitCode.Success
} catch {
case e: Throwable => println(e.getClass); throw e
- }
+ }
}
ExitCode.Success
}