Add the Sum class to test as an example.

main 0.1.1
KKlochko 2 years ago
parent dabb09c518
commit 4136775a1f

@ -0,0 +1,8 @@
package space.kklochko.simple_jbdd.test_examples;
public class Sum {
static int sum(int a, int b) {
return a + b;
}
}

@ -0,0 +1,11 @@
package space.kklochko.simple_jbdd.test_examples
import spock.lang.Specification
class SumSpec extends Specification {
def "Adding two numbers"() {
expect: "Two plus three is five."
5 == Sum.sum(2, 3);
}
}
Loading…
Cancel
Save