Decision table testing is a software testing technique that connects inputs to outputs. It utilizes a structured table for all possible test cases to be analyzed. A condition represents a variable or input that impacts a process, and the action is the outcome influenced by a condition. Condition alternatives define all possible values for a condition. Each row in decision table testing is a connection between a condition and action, with values typically represented as true or false or yes or no. For instance testing a login system, the conditions are username and password. Action is a successful or failed login attempt. Switch table is classified as a type of decision table testing where a single condition decides a design. A traffic light system is an instance of decision table testing, with traffic light color being the condition. Action is cars stopping or continuing through traffic depending on traffic light color. In rule based decision table, columns are actions and conditions, and the row indicates if a condition and action for a column match the condition and action for a rule. Another type of decision based testing is a limited decision table. Limited decision tables have a simple and independent condition with an example of a login system. A login attempt result is known from a username and password being correctly entered. Username and password are independent conditions, as a system identifies username or password is correct, regardless of each other.
First step in creating a decision table is identifying the conditions. A login system will be used for an example. Conditions are valid username or password. Once the conditions are constructed, the next step is defining possible condition alternatives. In a class activity, the conditions were gpa and credits. A condition with either gpa or credits is allowed multiple values such as gpa > 2.5 or gpa < 4.0. Once condition and condition alternatives have been created, the actions have to be defined. The next step is setting up rules for the decision table. After the rules have been set. The table should hold conditions, actions, rules, and condition alternatives. Table should be now filled. The last step to creating a decision table is identifying and deleting repetitive rules. Prior to taking a software testing class, I had little knowledge on decision table testing. I choose this blog as a chance to expand my understanding of decision testing. After reading the article, I have a better understanding of decision testing compared to my first learning decision testing.
article: https://www.browserstack.com/guide/decision-table
From the blog CS@Worcester – jonathan's computer journey by Jonathan Mujjumbi and used with permission of the author. All other rights reserved by the author.