From 99845200c860bb51916ae94ab9b309e4c04f671e Mon Sep 17 00:00:00 2001 From: Drew Short Date: Sat, 4 Jan 2014 11:00:54 -0500 Subject: [PATCH] Hopefully have this testing stuff sorted now :) --- pom.xml | 8 ++++---- src/test/scala/com/sothr/imagetools/BaseTest.scala | 5 +++++ src/test/scala/com/sothr/imagetools/ScalaAppTest.scala | 9 +++++++++ 3 files changed, 18 insertions(+), 4 deletions(-) create mode 100644 src/test/scala/com/sothr/imagetools/BaseTest.scala create mode 100644 src/test/scala/com/sothr/imagetools/ScalaAppTest.scala diff --git a/pom.xml b/pom.xml index 1ef70bb..cc30fdd 100644 --- a/pom.xml +++ b/pom.xml @@ -97,16 +97,16 @@ - + org.apache.maven.plugins maven-surefire-plugin 2.7 - true + false - + org.scalatest scalatest-maven-plugin @@ -114,7 +114,7 @@ ${project.build.directory}/surefire-reports . - com.sothr.imagetools.AppTest.txt + WDF TestSuite.txt diff --git a/src/test/scala/com/sothr/imagetools/BaseTest.scala b/src/test/scala/com/sothr/imagetools/BaseTest.scala new file mode 100644 index 0000000..1e265c9 --- /dev/null +++ b/src/test/scala/com/sothr/imagetools/BaseTest.scala @@ -0,0 +1,5 @@ +package com.sothr.imagetools + +import org.scalatest.{FunSuite,Matchers,OptionValues,Inside,Inspectors} + +abstract class BaseTest extends FunSuite with Matchers with OptionValues with Inside with Inspectors diff --git a/src/test/scala/com/sothr/imagetools/ScalaAppTest.scala b/src/test/scala/com/sothr/imagetools/ScalaAppTest.scala new file mode 100644 index 0000000..b534805 --- /dev/null +++ b/src/test/scala/com/sothr/imagetools/ScalaAppTest.scala @@ -0,0 +1,9 @@ +package com.sothr.imagetools + +class ScalaAppTest extends BaseTest { + + test("I Do Nothing Just Make Sure The Framework Works") { + assert(true); + } + +}