“10 Expert Postman Testing Tips” Webinar Recording
Postman is awesome. And so is this webinar. I’m going through all kinds of useful information on Postman, and how to use it effectively for testing REST APIs. But it’s not just about features. It’s also about methodical testing, and how to fit a tool into the whole development process. Read more…
Unit testing is part of the job
In one of my unit testing courses we had a disucssion I’ve been part of what feels like a million times. The question the team asked was: “How do you convince the client to pay for unit testing?” Because it adds like 20% more to the project’s budget, right? While we Read more…
Testing is not a phase!
It used to be. Somewhere, squeezed between the end of development and release. But then things changed, because they had to. We’re testing product ideas, way before there’s one line of code. We’re testing the code as it’s being written, because we want to make sure it does what we Read more…
Unit Testing Error Handling and Exceptions
One of the things that unit tests are best for is checking error conditions. While we want wider coverage of full happy flows, error conditions are sometimes hard to simulate in a big system, and unit tests excel at minimal setup to make sure our code handles the problem correctly. We have Read more…
Testing Strategy Analysis – An Example
Each stage of implementation is hard in its own way. When we start out with a new effort or process, we think of it as: Sure, it will be hard in the beginning, but it’s going to become easier as we continue. It’s true, and then after a while a new challenge Read more…