summaryrefslogtreecommitdiff
path: root/test/junit/scala/collection/parallel/immutable/ParRangeTest.scala
blob: f746fc2bf9f873ec93b5f95d8c52f7e602ceb1f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package scala.collection.parallel.immutable

import org.junit.runner.RunWith
import org.junit.runners.JUnit4
import org.junit.Test

@RunWith(classOf[JUnit4])
class ParRangeTest {

  @Test
  def buildParRangeString {
    assert(ParRange(1, 5, 1, true).toString == "ParRange 1 to 5")
  }

}