There are many ways to define expectations in specs2. You can define expectations with anything that returns a Result: Boolean Standard result Matcher result Scalacheck property Mock expectation DataTable Forms Boolean resultsThis is the simplest kind of result you can define for an expectation but also the least expressive!Here's an example: "This is hopefully true" ! (1 != 2) This can be useful