summaryrefslogtreecommitdiff
path: root/stringmetric-core/source/test/scala/com/rockymadden/stringmetric/ScalaTest.scala
blob: 5f4ab6296e2aee273615725055ad0523c5ba7688 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.rockymadden.stringmetric

import org.scalatest.{BeforeAndAfter, ParallelTestExecution, WordSpec}
import org.scalatest.matchers.ShouldMatchers

trait ScalaTest extends WordSpec with ShouldMatchers with BeforeAndAfter with ParallelTestExecution {
	def allows = afterWord("allow")

	def executes = afterWord("execute")

	def passed = afterWord("passed")

	def provide = afterWord("provide")

	def returns = afterWord("return")

	def throws = afterWord("throw")
}