-
-
Save robashton/3879435 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package samples | |
import kspec.framework.* | |
spec public fun calculatorSpecs() { | |
var calculator = null | |
var sum = 0 | |
given("a calculator", { | |
calculator = Calculator() | |
}) | |
when("calling sum with two numbers", { | |
sum = calculator.sum(2,4) | |
}) | |
then("it should return the result of adding the first number to the second", { | |
shouldEqual(6, sum) | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment