Testing
-
Software Development
Oversharing on Set Up
Consider the following fictitious test fixture code: beforeEach(() => { databaseConnection = openDatabase(); inputFile = loadBigFile(); userList = loadUserList(); imageData…
Read More » -
Core Java
Testing with Hoverfly and Java Part 5: XML and Xpath matchers
Previously we worked with some of the existing Hoverfly matchers like the regex, glob and exact. Each one serves its…
Read More » -
Enterprise Java
Testing using TestContainers
Part of our everyday ci/cd tasks involve using containers in order for the tests to take effect.So what if you…
Read More » -
Enterprise Java
Parameterized Tests in JUnit 5
A parameterized test allows you to run a test against a varying set of data. If you find yourself calling…
Read More » -
Enterprise Java
Testing Expected Exceptions with JUnit 5
This post shows how to test for expected exceptions using JUnit 5. If you’re still on JUnit 4, please check…
Read More » -
Core Java
Testing with Hoverfly and Java Part 4: Exact, Glob and Regex Matchers
Previously we used Hoverfly among its state feature. So far our examples have been close to an absolute request match,…
Read More » -
DevOps
Run a docker PostgreSQL instance locally for Testing
Running a PostgreSQL instance ad-hoc for testing is not always as bootstraping as it should be. This blog will run…
Read More » -
Software Development
Scriptless Testing
The pace of software delivery increases every day. Today, we have a myriad of sophisticated frameworks, dev tools, web services,…
Read More » -
Software Development
Best Practices for Test Automation – 2020 Tester’s Checklist
Although there’s no denying that manual testing will always stay relevant, there’s an increasing demand for automated testing. It brings…
Read More »