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.111 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.110 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.109 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.108 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.107 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.106 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.105 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.104 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.103 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.102 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.101 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.100 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.99 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.98 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.97 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.96 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.95 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.94 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.93 tracks/scala/exercises/say/src/test/scala/SayTest.scala
trackler-2.2.1.92 tracks/scala/exercises/say/src/test/scala/SayTest.scala