There are a number of different patterns we can use to automate CRUD testing. At the very minimum, we want to test one operation of each: Create, Read, Update, and Delete. For the purposes of this discussion, let’s assume the following: 1. We are testing the simple form used in this post2. We are doing […]
Author: kristinjackvony
CRUD Testing Part II- Update and Delete
In last week’s post, we started looking at CRUD testing. As you recall, CRUD stands for Create, Read, Update, and Delete. Last week we discussed testing Create and Update operations, and now we will continue by looking at Update and Delete. In our discussion of the Read operation last week, I mentioned how important it […]
CRUD Testing Part I- Create and Read
In spite of its unappealing name, CRUD testing is extremely important! CRUD stands for Create, Read, Update, and Delete. As any tester knows, much of our testing involves these operations. Today we’ll discuss the best ways to test Create and Read. The most important thing to know about testing CRUD is that it’s not enough […]
Testing a Text Field
A text field in an application seems so ordinary, and yet it is one of the most important things we can test. Why? Because text fields provide an entryway into an application and its underlying database. Validation on a text field is what keeps lousy data from getting into the database, which can cause all […]
Think Like a Tester
Beginning with this week’s post, my blog will be taking on a new focus! I have renamed it from Fearless Automation to Think Like a Tester (for the moment, the URL will remain the same). There were three recent events that made me decide to shift my focus: I attended a large international computing conference […]
API Testing vs. UI Testing
Recently someone asked me “If you have API testing, you don’t need UI testing, right?” I said “No, because you need to have tests that make sure that elements such as buttons are present and working correctly.” Then he asked, “Then if you have UI testing, you don’t need API testing?” I said, “No, […]
What the Sinking of the Vasa can Teach Us About Software Development
In Stockholm, Sweden, there is a museum that displays the ship called the Vasa, which sank on its maiden voyage in 1628. I’ve never been there, but I’ve heard that the museum is fascinating for both architectural and historical reasons. The Vasa took three years to build, and was supposed to be the flagship for […]
What “Passengers” Can Teach Us About Quality Assurance
Last weekend, I watched the movie Passengers. The basic plot of the movie is that two passengers in hibernation on a flight from Earth to another planet are awakened ninety years too early. As a QA engineer the movie got me thinking about two valuable lessons for developing and testing software. Lesson One: “And Yet […]
Ask Your Way to Success
Ten years ago, I didn’t know how to use a Windows computer. I didn’t know how the file system worked. I didn’t know what right-clicking on a mouse did. Today I am a QA Engineer doing both manual and automated testing at a great company. How did I get here from there? I asked a […]
Fix All the Things
It’s very easy when you are rushing to complete features to let some bugs slide. This article will show why in most cases it’s better to fix all the bugs now rather than later. The following scenario is hypothetical, but is based on my experience as a tester. NewTech Inc. is very excited about […]