Advanced Testing Patterns

As presented @ KDG University College

Session Content Slides Slides available as pdf. Code The code is available on Github <3 Discussed Topics: H2 database Liquibase WireMock TestContainers Consumer Contracts Q&A Why do you call the instance of the class you are testing “sut”? “sut” is short for “Subject/System Under Test” and makes it clear what class the focus of the test is. If your testclass is very big, I have found that using “sut” is easier than relying on the name of the testclass (scrolling up). [Read More]