summaryrefslogblamecommitdiff
path: root/core/src/test/scala/com/rockymadden/stringmetric/ScalaTest.scala
blob: 5f4ab6296e2aee273615725055ad0523c5ba7688 (plain) (tree)
1
2
3
4
5
6
                                    
 
                                                                      

                                            
                                                                                                     










                                           
 
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")
}