summaryrefslogtreecommitdiff
path: root/test/files/scalacheck/parallel-collections/pc.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/scalacheck/parallel-collections/pc.scala')
-rw-r--r--test/files/scalacheck/parallel-collections/pc.scala20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/files/scalacheck/parallel-collections/pc.scala b/test/files/scalacheck/parallel-collections/pc.scala
deleted file mode 100644
index d369faf804..0000000000
--- a/test/files/scalacheck/parallel-collections/pc.scala
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-import org.scalacheck._
-import scala.collection.parallel._
-
-
-object ParCollProperties extends Properties("Parallel collections") {
- include(mutable.IntParallelArrayCheck)
- include(immutable.ParallelRangeCheck)
-}
-
-
-object Test {
- def main(args: Array[String]) {
- val results = org.scalacheck.Test.checkProperties(ParCollProperties)
- if (!results.forall(_._2.passed)) println(results)
- }
-}