summaryrefslogtreecommitdiff
path: root/test/files/scalacheck/quasiquotes/Test.scala
blob: 7a26fa49238d254ec0cb17d24d2c606d97e13dda (plain) (blame)
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)
}