Skip to content
Snippets Groups Projects
Commit a86f9771 authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Added empty test

parent cfeefcd4
No related branches found
No related tags found
No related merge requests found
......@@ -45,6 +45,18 @@
<artifactId>BiopetToolsExtensions</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.8</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_2.10</artifactId>
<version>2.2.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
\ No newline at end of file
package nl.lumc.sasc.biopet.pipelines.gwastest
import nl.lumc.sasc.biopet.utils.config.Config
import org.broadinstitute.gatk.queue.QSettings
import org.scalatest.Matchers
import org.scalatest.testng.TestNGSuite
import org.testng.annotations.Test
/**
* Created by pjvan_thof on 4/11/16.
*/
class GwasTestTest extends TestNGSuite with Matchers {
def initPipeline(map: Map[String, Any]): GwasTest = {
new GwasTest {
override def configName = "gwastest"
override def globalConfig = new Config(map)
qSettings = new QSettings
qSettings.runName = "test"
}
}
@Test
def testEmpty: Unit = {
val pipeline = initPipeline(Map())
intercept[IllegalArgumentException] {
pipeline.script()
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment