Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add functional tests #23

Merged
merged 3 commits into from
Jul 8, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,10 @@ publishMavenStyle := false
publishArtifact in Test := false

licenses +=("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0.html"))


ScriptedPlugin.scriptedSettings

scriptedLaunchOpts := { scriptedLaunchOpts.value ++
Seq("-Xmx1024M", "-XX:MaxPermSize=256M", "-Dplugin.version=" + version.value)
}
2 changes: 2 additions & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
resolvers += "sonatype-releases" at "https://oss.sonatype.org/content/repositories/releases/"

libraryDependencies <+= sbtVersion(v => "org.scala-sbt" % "scripted-plugin" % v)
11 changes: 11 additions & 0 deletions src/sbt-test/scoverage/bad-coverage/build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version := "0.1"

scalaVersion := "2.10.4"

libraryDependencies += "org.specs2" %% "specs2" % "2.3.13" % "test"

instrumentSettings

ScoverageKeys.minimumCoverage := 80

ScoverageKeys.failOnMinimumCoverage := true
15 changes: 15 additions & 0 deletions src/sbt-test/scoverage/bad-coverage/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// The Typesafe repository
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"

//scoverage needs this
resolvers += Classpaths.sbtPluginReleases

{
val pluginVersion = System.getProperty("plugin.version")
if(pluginVersion == null)
throw new RuntimeException("""|The system property 'plugin.version' is not defined.
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin)
else addSbtPlugin("org.scoverage" %% "sbt-scoverage" % pluginVersion)
}


Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
object BadCoverage {

def sum(num1: Int, num2: Int) = {
num1 + num2
}

def mult(num1: Int, num2: Int) = {
num1 * num2
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import org.specs2.mutable._

/**
* Created by tbarke001c on 7/8/14.
*/
class BadCoverageSpec extends Specification {

"BadCoverage" should {
"sum two numbers" in {
BadCoverage.sum(1, 2) mustEqual 3
}
}
}
3 changes: 3 additions & 0 deletions src/sbt-test/scoverage/bad-coverage/test
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# run scoverage
> clean
-> scoverage:test
11 changes: 11 additions & 0 deletions src/sbt-test/scoverage/good-coverage/build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version := "0.1"

scalaVersion := "2.10.4"

libraryDependencies += "org.specs2" %% "specs2" % "2.3.13" % "test"

instrumentSettings

ScoverageKeys.minimumCoverage := 80

ScoverageKeys.failOnMinimumCoverage := true
15 changes: 15 additions & 0 deletions src/sbt-test/scoverage/good-coverage/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// The Typesafe repository
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"

//scoverage needs this
resolvers += Classpaths.sbtPluginReleases

{
val pluginVersion = System.getProperty("plugin.version")
if(pluginVersion == null)
throw new RuntimeException("""|The system property 'plugin.version' is not defined.
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin)
else addSbtPlugin("org.scoverage" %% "sbt-scoverage" % pluginVersion)
}


Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
object GoodCoverage {

def sum(num1: Int, num2: Int) = {
num1 + num2
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import org.specs2.mutable._

/**
* Created by tbarke001c on 7/8/14.
*/
class GoodCoverageSpec extends Specification {

"GoodCoverage" should {
"sum two numbers" in {
GoodCoverage.sum(1, 2) mustEqual 3
}
}
}
3 changes: 3 additions & 0 deletions src/sbt-test/scoverage/good-coverage/test
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# run scoverage
> clean
> scoverage:test