Scalatest and type-safe equality
In Scalatest when using matchers you have many ways to test for equality, but only one of those is type-safe - should ===() So, if you have a function returning Int, like def f(i: Int): Int = i then the only type-safe way to test it is to use should ===() syntax, like f(5) should ===(5) »