summaryrefslogtreecommitdiff
path: root/test/files/scalacheck/quasiquotes/Test.scala
blob: f41d9618889b86af793b876377aa59205adc9589 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)
  include(DeprecationProps)
}