Iouri Khramtsov

Results 1 issues of Iouri Khramtsov

Borrowing from [Fluent Assertions](http://fluentassertions.com/documentation.html#collections), it would be quite convenient to have lambda-based assertions for collections: ```kotlin class Thing(val name) val collection = arrayListOf(Thing("a"), Thing("b"), Thing("c")) collection.should.contain({ it.name == "a" })...