Sha256: 67fc576bc836318eb01d7beeb9414e615a5cfd7c603dc1b2e7ec3acb3badcbd2

Contents?: true

Size: 1.78 KB

Versions: 92

Compression:

Stored size: 1.78 KB

Contents

import org.scalatest.{Matchers, FunSuite}

/** @version 1.0.0 */
class SayTest extends FunSuite with Matchers {
  
  test("zero") {
    Say.inEnglish(0) should be (Some("zero"))
  }

  test("one") {
    pending
    Say.inEnglish(1) should be (Some("one"))
  }

  test("fourteen") {
    pending
    Say.inEnglish(14) should be (Some("fourteen"))
  }

  test("twenty") {
    pending
    Say.inEnglish(20) should be (Some("twenty"))
  }

  test("twenty-two") {
    pending
    Say.inEnglish(22) should be (Some("twenty-two"))
  }

  test("one hundred") {
    pending
    Say.inEnglish(100) should be (Some("one hundred"))
  }

  test("one hundred twenty-three") {
    pending
    Say.inEnglish(123) should be (Some("one hundred twenty-three"))
  }

  test("one thousand") {
    pending
    Say.inEnglish(1000) should be (Some("one thousand"))
  }

  test("one thousand two hundred thirty-four") {
    pending
    Say.inEnglish(1234) should be (Some("one thousand two hundred thirty-four"))
  }

  test("one million") {
    pending
    Say.inEnglish(1000000) should be (Some("one million"))
  }

  test("one million two thousand three hundred forty-five") {
    pending
    Say.inEnglish(1002345) should be (Some("one million two thousand three hundred forty-five"))
  }

  test("one billion") {
    pending
    Say.inEnglish(1000000000) should be (Some("one billion"))
  }

  test("a big number") {
    pending
    Say.inEnglish(987654321123l) should
      be (Some("nine hundred eighty-seven billion six hundred fifty-four million three hundred twenty-one thousand one hundred twenty-three"))
  }

  test("numbers below zero are out of range") {
    pending
    Say.inEnglish(-1) should be (None)
  }

  test("numbers above 999,999,999,999 are out of range") {
    pending
    Say.inEnglish(1000000000000l) should be (None)
  }
}

Version data entries

92 entries across 92 versions & 1 rubygems

Version Path
trackler-2.2.1.51 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.50 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.49 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.48 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.47 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.46 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.45 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.44 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.43 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.42 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.41 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.40 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.39 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.38 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.37 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.36 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.35 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.34 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.33 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.32 tracks/scala/exercises/say/src/test/scala/SayTest.scala