Thanks a lot for making this screencast! One small comment - when you are writing facts with a description you should use curly braces instead of '=> [....]':
java
describe "Empty Stack"{
fact "pop throws exception"{
val stack = new Stack<String>()
stack.pop throws Exception
}
}
Thanks a lot for making this screencast! One small comment - when you are writing facts with a description you should use curly braces instead of '=> [....]':