Dynamic Testing Techniques – Cause and Effect Graph.
Test case writing forms an integral part of testing, whether it is Manual or Automation. Every project is exclusive and has a <n> number of test conditions that need to be covered.
We should focus on two points whenever we write test cases. These are:
- Mitigating the Risk
- Coverage
This paper revolves around the second point which is “Coverage”. To be precise – Requirements Coverage.
Table of Contents:
Test Case Writing Techniques For Dynamic Testing
- Equivalence Partitioning
- Boundary Value Analysis
- Decision table
- Cause and Effect graph technique
- State Transition diagram
- Orthogonal Array Testing(OATS)
- Error Guessing.
We have some really good papers 1st, 2nd and 3rd points (Equivalence Partitioning, BVA and Decision tables) here in STH. I am going to discuss point 4 which is the Cause and Effect graph.
Introduction To Cause And Effect Graph
The Cause and Effect Graph is a dynamic test case writing technique. Here causes are the input conditions and effects are the results of those input conditions.
Suggested reading =>> What is Dynamic Testing?
Cause-Effect Graph is a technique that starts with a set of requirements and determines the minimum possible test cases for maximum test coverage which reduces test execution time and cost. The goal is to reduce the total number of test cases, still achieving the desired application quality by covering the necessary test cases for maximum coverage.
But at the same time obviously, there are some downsides to using this test case writing technique. It takes time to model all your requirements into this Cause-Effect Graph before writing test cases.
The Cause-Effect Graph technique restates the requirements specification in terms of the logical relationship between the input and output conditions. Since it is logical, it is obvious to use Boolean operators like AND, OR and NOT.
Notations Used:
Now let’s try to implement this technique with some examples:
- Draw a Cause and Effect graph based on a requirement/situation.
- Cause and Effect Graph is given, draw a Decision table based on it to draw the test case.
Let’s see both of them one by one.
Draw A Cause And Effect Graph According To Situation
Situation:
The “Print message” is software that reads two characters and, depending on their values, messages is printed.
- The first character must be an “A” or a “B”.
- The second character must be a digit.
- If the first character is an “A” or “B” and the second character is a digit, then the file must be updated.
- If the first character is incorrect (not an “A” or “B”), the message X must be printed.
- If the second character is incorrect (not a digit), the message Y must be printed.
Solution:
The Causes of this situation are:
C1 – First character is A
C2 – First character is B
C3 – the Second character is a digit
The Effects (results) for this situation are:
E1 – Update the file
E2 – Print message “X”
E3 – Print message “Y”
LET’S START!!
First, draw the Causes and Effects as shown below:
Key – Always go from Effect to Cause (left to right). That means, to get effect “E”, what causes should be true.
In this example, let’s start with Effect E1.
Effect E1 is for updating the file. The file is updated when
– The first character is “A” and the second character is a digit
– The first character is “B” and the second character is a digit
– The first character can either be “A” or “B” and cannot be both.
Now let’s put these 3 points in symbolic form:
For E1 to be true – the following are the causes:
– C1 and C3 should be true
– C2 and C3 should be true
– C1 and C2 cannot be true together. This means C1 and C2 are mutually exclusive.
Now let’s draw this:
So as per the above diagram, for E1 to be true the condition is (C1 C2) C3
The circle in the middle is just an interpretation of the middle point to make the graph less messy.
There is a third condition where C1 and C2 are mutually exclusive. So the final graph for effect E1 to be true is shown below:
Let’s move to Effect E2:
E2 states print message “X”. Message X will be printed when the First character is neither A nor B.
This means Effect E2 will hold true when either C1 OR C2 is invalid. So the graph for Effect E2 is shown as (In blue line)
For Effect E3.
E3 states print message “Y”. Message Y will be printed when the Second character is incorrect.
This means Effect E3 will hold true when C3 is invalid. So the graph for Effect E3 is shown as (In Green line)
This completes the Cause and Effect graph for the above situation.
Now let’s move to draw the Decision table based on the above graph.
Writing Decision Table Based On Cause And Effect graph
First, write down the Causes and Effects in a single column shown below
The Key is the same. Go from bottom to top which means traverse from Effect to Cause.
Start with Effect E1. For E1 to be true, the condition is (C1 C2) C3.
Here we are representing True as 1 and False as 0
First, put Effect E1 as True in the next column as
Now for E1 to be “1” (true), we have the below two conditions –
C1 AND C3 will be true
C2 AND C3 will be true
For E2 to be True, either C1 or C2 has to be False shown as,
For E3 to be true, C3 should be false.
So it is completed. Let’s complete the graph by adding 0 in the blank column and include the test case identifier.
Writing Test Cases From The Decision Table
Below is a sample test case for Test Case 1 (TC1) and Test Case 2 (TC2).
In a similar fashion, you can create other test cases.
(A test case contains many other attributes like preconditions, test data, severity, priority, build, version, release, environment, etc. I assume all these attributes to be included when you write the test cases in the actual situation)
Conclusion
Summarizing the steps once again:
- Draw the circles for Causes and Effect Graphs
- Start from Effects and move towards the Cause.
- Look for mutually exclusive causes.
This finishes the Cause and Effect graph dynamic test case writing technique. We have seen how to draw the graph and how to draw the decision table based on it. The final step of writing test cases based on the decision table is comparatively easy.
About the Author: This is a guest article by Shilpa Chatterjee Roy. She is working in the Software Testing field for the past 8.5 years in various domains.
Feel free to discuss your test case writing methods in the comments below.
Thank You for this superb example.. explanation Better to understand as compared to other examples and i followed in my presentation..everyone understood easily. Thank You so much.. 🙂
Explanation Better to understand as compared to other examples and material over internet.
This is really best explanation about test cases writing with Cause Effect graph testing.
Thank you..
nicely explained but 1 thing that is not clear is that in the 3rd n 4th test cases u have given c3=0 whereas in d que its written for msg X to b print 1st char is not a A or B so test case should be c1=0 c3=1 => e2=1; c2=0 c3=1 => e2=1.
and in 5th n 6th Message Y will be printed when Second character is incorrect i.e c3=0 and here u have considered c1 and c2.
whereas in 3rd n 4th TC u have not considered c3..
pls explain
I didn’t understand the following step:
For E3 to be true, C3 should be false.
I thought you will fill table with zero values for C3 and “one ” value for E3 but instead you filled 1s for C1 and C2 and left C3 blank?
nice explanation. recently we are engaged in exploratory testing more. but something like this with proven QA methods will certainly help.
Hi Santosh / Ibaa Hanbali
Test case ID for E3 to be true are TC5 and TC6
Here E3 is true, so it is 1 for both TC5 and TC6
C3 is false, so it is 0 for both TC5 and TC6.
Now we are left with 2 causes – C1 and C2 for TC5 and TC6
so in TC5, I have kept C1 as true (1) and in TC6, I have kept C2 as true (1)
HI shilpa i did’t understand for E2 to be true for tc3.. c1 should be false and c3 to be true na.. bt y c3=0 in tc3.. please im bit confused pls explain me
jrtutfmkuty
Hi i am fresher .I am also searching sample test cases, if you have anybody, please send to selva.kumarvlss@gmail.com . Eagerly waiting.
I agree with Cocoa. Test Case 3 is wrong, E3 should also be 1 there – Thus the program should write both message X and message Y.
Test Case 3
IF INPUT
C1 = 0
C2 = 0
C3 = 0
THEN OUTPUT
E1 = (C1 OR C2) AND C3 = (0 OR 0) AND 0 = 0 AND 0 = 0
E2 = NOT(C1 OR C2) = NOT(0 OR 0) = NOT(0) = 1
E3 = NOT(C3) = NOT(0) = 1
SO
E1 = 0
E2 = 1
E3 = 1
This is really best explanation. I have cleared all doubts . thank you very much…..
Hi Shilpa,
This looks like a good way of breaking down requirements. Can you explain what the ‘\/’ and the ‘/\’ mean in the diagrams?
This is the first time I have seen this notation. Does it mean “OR” and “AND” respectively?
Regards,
Joey
thanks for the detailed explanation
can you please explain about test pre conditions…?????
I think there is something wrong on decision table,if C1 C2 C3 0 0 0 ,then the result should be 0 1 1 ,
Thanks a lot, this was a very helpful piece of info.
Esp. It took no time to understand it… !
Hi, I try to this please comment:
I put – in decision for data that does not affect the effect (result)
tc1 tc2 tc3 tc4 tc5 tc6
c1 1 – 0 – 1 –
c2 – 1 – 0 – 1
c3 1 1 0 1 0 0
e1 1 1 – – – –
e2 – – 1 1 – –
e3 – – – – 1 1
and the test case for TC3 to TC6:
TC3
TC3_Print_Msg_X
validate that system print msg X when first character is neither A nor B
1. Open the application
2. Enter 1st character as J
3. Enter 2nd character as h
print msg X
-=-=-=-=-=-=
TC4
TC4_Print_Msg_X
validate that system print msg X when first character is neither A nor B
1. Open the application
2. Enter 1st character as J
3. Enter 2nd character as 8
print msg X
-=-=-=-=-=-=
TC5
TC5_Print_Msg_Y
validate that system print msg Y when 2nd character is a not digit
1. Open the application
2. Enter 1st character as A
3. Enter 2nd character as w
print msg Y
-=-=-=-=-=-=
TC6
TC6_Print_Msg_Y
validate that system print msg Y when 2nd character is a not digit
1. Open the application
2. Enter 1st character as B
3. Enter 2nd character as w
print msg Y
The table is wrong.
This look a complex. This needs to be better defined.
Hi Shilpa,
I had the same confusion what Ibaa Hanbali has posted
Could you please elaborate?
“For E3 to be true, C3 should be false.
I thought you will fill table with zero values for C3 and “one ” value for E3 but instead you filled 1s for C1 and C2 and left C3 blank?”
Very clear & detailed explanation.Thank you so much for your best explanation.
Thanks for the informative papers. However, I could not help but discover several typos and mistakes in most papers on this website. I understand that all the papers are written by several different people. But it should not be very hard to review the work before publishing. This is after all about quality assurance.
For instance half way through the paper, we were advised to work from left to right going from effects to causes . However, no where in the entire paper are effects mentioned on the left side. I do not want to come off as nitpicking minor details. But if we are going to talk about quality assurance, I believe we should start with some good quality standards.
Having said that in the above paper I did not understand why anyone has to go through so much work to develop a decision table. It appears that a lot of time could have been saved by going straight to the decision table using the conditions listed right at the beginning. May be it is a useful technique when working with complex applications. But I am unable to see the value of this technique for the given example. No explanation is given for the original premise for using this technique – that we would be able to cover more requirements with lesser number of test cases by using this technique.
The article is quite informative.Can you please tell me any software that can be used to generate cause effect flow graph?
We provide our personal information like Name, Age, qualification, etc., in various registration forms like first-time app installation or any other Government websites.
This 2 line of statement i need a cause-effect graph.
plzzz tell me
in the decision table in construction the value of c3 taken is 0 which is wrong. It shpuld be 1.
sd
I didt not understand the table for E2 and E3.
Can you pls explain bit more..
Thanks in advance
Hi Vijay,
This article is good enough , This article is helpful for the people who are going to attend ISTQB.
Thanks for this nice article
Thank you All!
@Aruna
Test condition are the pre-requisites or assumptions for executing a test case. To explain with some examples:
1. You want to test a certain section of a web application for a certain set of user – so in this case the precondition can be- ” take a user having permission”
2. For validating a student registration, the precondition can be ” student age is > 18″
In a similar fashion, you can define preconditions for testing negative scenario also.
Precondition also forms a basis for creating / requesting test data as well.
This is very much helpful. Thank you.
Good general explanation but there are some mistakes in this article. Firstly, in the circles under the text “LET’S START!!” you have written E1 twice and not written E3.
Secondly, I don’t understand why you are filling in the blank cells with zeroes. Surely it makes more sense to leave them blank? Zero means FALSE, so for example for TC3 and TC4 you would be making both C1 and C2 false, which are not valid options in the described scenario. By making all the blank cells zero you are making them all False when in fact we should be saying their value is not relevant (so can be either 0 or 1).
Excellent article , but i still can’t understand in case E3 is true , why put 1 in C1 / TC5 and in C2/TC6
hdhdfhfdyhfhbhc
Thank very much,simplified to the bearest letter.Great job
Nice Illustration. Very useful for the students to understand the cause and effect technique in a lucid way.
So the total comes out to 13 TC? Based on 1’s in decision table. Should we apply EC + BVA to filter out results?
It really help full one
Thank you sir !?????
This is good article. Also, the tips/tricks/trades being published are very good, informative for testing skills enhancement. I always recomment my team to go through these. Thank you.
I am fresher, I am searching sample testcases, if any body have, please send to maheshjutti@gmail.com,
Thank you…
nice explanation
can you please explain about test pre conditions…?????