summaryrefslogtreecommitdiff
path: root/test/files/scalacheck/quasiquotes/Test.scala
blob: 05097711ef454f7059b1e1f061e4ec7f8b4d2a6e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import org.scalacheck._

object Test extends Properties("quasiquotes") {
  include(TermConstructionProps)
  include(TermDeconstructionProps)
  include(TypeConstructionProps)
  include(TypeDeconstructionProps)
  include(PatternConstructionProps)
  include(PatternDeconstructionProps)
  include(LiftableProps)
  include(ErrorProps)
  include(DefinitionConstructionProps)
  include(DefinitionDeconstructionProps)
}