Fields Validation Test
Background
Spend too much time doing tests with critical severity, but the test is not that critical, Like Validation in registeation.
The basic software test definition ensures that the product is well enough to deliver to production, all functionalities should be working well, and there’s now a blocker or critical issue in main functionalities. But how about the Edge case? How about the validation on each field? Should we Test it in our regression every release since they are critical/in the critical part?
So…
Let’s separate the test validation and test functionality. Why? Here’s a little illustration:

From the illustration, we can see that they are different. Validation and Functionality flow are in different parts, with different focuses, and the similarity is only in the severity.
In the validation field, there are many cases and possibilities of how the fields work; in the functionalities, they have fewer possibility cases. if we put it in the same place as the functionalities, they are
What kind of Test Cases are part of Validation
The simple answer is all the test cases related to fields or can be applied to all of the fields on the application.
Design the Test Field Validation
(will be updated soon) :)) need free time to finish this.