Sebastian Benz's Profile

GitHub User: sebastianbenz

Site: http://www.sebastianbenz.de

Comments by Sebastian Benz

Avatar

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
  }
}