1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
import org.scalacheck._
object Test extends Properties("quasiquotes") {
include(TermConstructionProps)
include(TermDeconstructionProps)
include(TypeConstructionProps)
include(TypeDeconstructionProps)
include(PatternConstructionProps)
include(PatternDeconstructionProps)
include(LiftableProps)
include(UnliftableProps)
include(ErrorProps)
include(RuntimeErrorProps)
include(DefinitionConstructionProps)
include(DefinitionDeconstructionProps)
include(DeprecationProps)
include(ForProps)
include(TypecheckedProps)
}
|