Skip to content

Commit 703b336

Browse files
authoredJan 27, 2020
Update README.md
1 parent 030bc58 commit 703b336

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎artifact_documentation/README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@ assertEquals(expected, actual);
108108

109109
Now that we have the Causal Testing results, we can begin to debug the defect.
110110

111+
### Determining defect cause
112+
111113
First, we can see that Holmes has provided three similar passing tests and three similar failing tests. Just from looking at the inputs to the tests that pass and the tests that fail we can see that, like the original failing test, all the additional failing tests include the ```/``` character while the tests that pass do not. This suggests the defect has something to do with the presence of the ```/``` in the input string.
112114

113115
Second, we can see that each generated test has a button under it labeled "See Execution Trace". Clicking this button opens a minimized trace of the execution; clicking the button again hides the trace.
@@ -120,7 +122,9 @@ Let's look at the trace for the most similar passing input, ```"String with a sl
120122

121123
We can see that as expected, the final method call to ```escapeJavaStyleString``` returns the same string that was input, as the test expected (```assertEquals(expected,actual)```). When we look at the trace for the original failing test, we can see that this same method call adds an additional character to the input string (```String with a slash (\/) in it```), causing the test to fail.
122124

123-
Based on this information, we can hypothesize that the cause of this defect is the mishandling of the ```/``` character in the ```escapeJavaStyleString``` method. Now let's see if we can find where this happening and how we can fix it.
125+
### Repairing the defect
126+
127+
Based on the information above, we can hypothesize that the cause of this defect is the mishandling of the ```/``` character in the ```escapeJavaStyleString``` method. Now let's see if we can find where this happening and how we can fix it.
124128

125129
To navigate to this final method call ```escapeJavaStyleString``` in Eclipse, do the following:
126130

0 commit comments

Comments
 (0)
Please sign in to comment.