summaryrefslogtreecommitdiff
path: root/test/files/scalacheck/quasiquotes/DeprecationProps.scala
diff options
context:
space:
mode:
authorSeth Tisue <seth@tisue.net>2017-01-23 14:35:47 -0800
committerSeth Tisue <seth@tisue.net>2017-01-27 09:29:53 -0800
commit4386b948a0b597cc78e4f3b22b51e0588a5b6d60 (patch)
treeeca8cea41d110d8b14d27a83ae06a90e966f9621 /test/files/scalacheck/quasiquotes/DeprecationProps.scala
parent27c10db549e6f43571663d0162b58fc04fbb34bf (diff)
downloadscala-4386b948a0b597cc78e4f3b22b51e0588a5b6d60.tar.gz
scala-4386b948a0b597cc78e4f3b22b51e0588a5b6d60.tar.bz2
scala-4386b948a0b597cc78e4f3b22b51e0588a5b6d60.zip
run ScalaCheck tests directly, not through partest
ScalaCheck ever being under partest in the first place is ancient history, from back in the Ant build days (shudder) ScalaCheck support was removed from partest 1.1.0, which we already upgraded to in a recent commit also upgrades ScalaCheck from 1.11.6 to 1.13.4, since we might as well. no source changes were necessary.
Diffstat (limited to 'test/files/scalacheck/quasiquotes/DeprecationProps.scala')
-rw-r--r--test/files/scalacheck/quasiquotes/DeprecationProps.scala52
1 files changed, 0 insertions, 52 deletions
diff --git a/test/files/scalacheck/quasiquotes/DeprecationProps.scala b/test/files/scalacheck/quasiquotes/DeprecationProps.scala
deleted file mode 100644
index 8e1601cf9d..0000000000
--- a/test/files/scalacheck/quasiquotes/DeprecationProps.scala
+++ /dev/null
@@ -1,52 +0,0 @@
-import org.scalacheck._, Prop._, Gen._, Arbitrary._
-import scala.reflect.runtime.universe._
-
-object DeprecationProps extends QuasiquoteProperties("deprecation") {
- val tname = TypeName("Foo")
- val tpt = tq"Foo"
- val tpe = typeOf[Int]
- val sym = tpe.typeSymbol.asType
- val argss = List(q"x") :: List(q"y") :: Nil
- val args = q"x" :: q"y" :: Nil
-
- property("new tpt argss") = test {
- assert(q"new $tpt(...$argss)" ≈ New(tpt, argss))
- }
-
- property("new tpe args") = test {
- assert(q"new $tpe(..$args)" ≈ New(tpe, args: _*))
- }
-
- property("new tpe args") = test {
- assert(q"new ${sym.toType}(..$args)" ≈ New(sym, args: _*))
- }
-
- property("apply sym args") = test {
- assert(q"$sym(..$args)" ≈ Apply(sym, args: _*))
- }
-
- property("applyconstructor") = test {
- assert(q"new $tpt(..$args)" ≈ ApplyConstructor(tpt, args))
- }
-
- property("super sym name") = test {
- assert(q"$sym.super[$tname].x".qualifier ≈ Super(sym, tname))
- }
-
- property("throw tpe args") = test {
- assert(q"throw new $tpe(..$args)" ≈ Throw(tpe, args: _*))
- }
-
- property("casedef pat body") = test {
- val pat = pq"foo"
- val body = q"bar"
- assert(cq"$pat => $body" ≈ CaseDef(pat, body))
- }
-
- property("try body cases") = test {
- val cases = (pq"a", q"b") :: (pq"c", q"d") :: Nil
- val newcases = cases.map { case (pat, body) => cq"$pat => $body" }
- val body = q"foo"
- assert(q"try $body catch { case ..$newcases }" ≈ Try(body, cases: _*))
- }
-} \ No newline at end of file