Parametrized tests with Spek
Everyone knows the situations when we have to check our system for various input. A good example would be a login/password validation performed both on front and backend. There are many approaches to create a test code which covers all necessary cases: 1. copy-paste methods (not recommended), 2. make many assertions in one test method …