Package com.sun.javatest.report
Class KflSorter.TestDiff
java.lang.Object
com.sun.javatest.report.KflSorter.TestDiff
- All Implemented Interfaces:
Comparable<KflSorter.TestDiff>
- Enclosing class:
KflSorter
Created for each result which somehow does not match what was expected
based on the KFL. Using this class allows the analysis to be done once
then queried again and again for different purposes.
-
Constructor Summary
ConstructorsConstructorDescriptionTestDiff
(String url, TestResult tr, KflSorter.Transitions type) TestDiff
(String url, String tc, TestResult tr, KflSorter.Transitions type) -
Method Summary
Modifier and TypeMethodDescriptionint
Not normally used, but can be used as a secondary way to get the associated KFL entry.getName()
Get the full name for this entry, including the test case.Get the list of the test case(s).Get the name of the test involved in this diff, not including the test case portion if that applies.boolean
Is the mismatch concerning the test's main result?void
Not normally used, but can be used as a backup if there is a special case where looking up the entry later would fail.
-
Constructor Details
-
TestDiff
-
TestDiff
-
-
Method Details
-
getTestResult
-
isTestMismatch
public boolean isTestMismatch()Is the mismatch concerning the test's main result?- Returns:
- True if the result status is not the same as the result expected based on the KFL. False if the main result matches.
-
getName
Get the full name for this entry, including the test case. Most useful for display purposes.- Returns:
- An easily human readable string.
- See Also:
-
getTestName
Get the name of the test involved in this diff, not including the test case portion if that applies.- See Also:
-
getTestCase
Get the list of the test case(s).- Returns:
- Null if there are no test cases associated, otherwise a comma separated string of test case names.
-
getKflEntry
Not normally used, but can be used as a secondary way to get the associated KFL entry. Typically this value will be null.- Returns:
- A KFL entry which caused this diff.
-
setKflEntry
Not normally used, but can be used as a backup if there is a special case where looking up the entry later would fail.- Parameters:
e
- The KFL entry to associate with this diff.
-
compareTo
- Specified by:
compareTo
in interfaceComparable<KflSorter.TestDiff>
-