Skip to content

Instantly share code, notes, and snippets.

@tamizhgeek
Created November 17, 2014 14:51
Show Gist options
  • Save tamizhgeek/06f923330b130d701d09 to your computer and use it in GitHub Desktop.
Save tamizhgeek/06f923330b130d701d09 to your computer and use it in GitHub Desktop.
import assignments.NumberToWords
import org.scalatest.{ShouldMatchers, FlatSpec}
class NumberToWordsTest extends FlatSpec with ShouldMatchers{
it should "convert numbers to words in required format" in {
val number = new NumberToWords(104536)
number.numForWords shouldBe "one-zero-four-five-three-six"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment