Skip to content

Instantly share code, notes, and snippets.

@sapanparikh18
Created October 24, 2018 07:55
Show Gist options
  • Save sapanparikh18/02387c83f94061ded441e302c4d55e0b to your computer and use it in GitHub Desktop.
Save sapanparikh18/02387c83f94061ded441e302c4d55e0b to your computer and use it in GitHub Desktop.
Created with Copy to Gist
package primefactors
import spock.lang.Specification
class PrimeFactorsSpec extends Specification{
def "api to t test nothing"(){
expect: "nothing" == "nothing"
}
def "API to test prime factors of given integer"(){
expect: "factorsOf(1) will return empty list"
factorsOf(1) == []
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment