|
||||||
SUMMARY: CHILDREN | PARAMETER | INSTPROC | INSTFILTER | INSTFORWARD | DETAIL: | INSTPROC |
::xotcl::Object | +--::xox::Node | +--::xounit::TestResult
TestFailure is a datastructure to hold information about a test passing. It contains the information about the name of the test, the specific test component, and the return value received from the test.
Variables | |||
Name | Default Value | Class | Comment |
name |
::xounit::TestResult | name of the test |
|
nodeName |
::xox::Node | ||
return |
"" | ::xounit::TestPass | returned string from the test |
test |
"" | ::xounit::TestPass | name of the test component |
testedClass |
"" | ::xounit::TestResult | the class tested |
testedMethod |
"" | ::xounit::TestResult | the method tested |
testedObject |
"" | ::xounit::TestResult | the object tested |
Methods | |
Name | Comment |
message {}
| returns the returned string |
numberOfErrors {}
| returns the number of errors in this TestResult |
numberOfFailures {}
| returns the number of failures in this TestResult |
numberOfPasses {}
| returns the number of passes in this TestResult |
numberOfTests {}
| returns the number of tests in this TestResult |
passed {}
| returns 1 (true) |
Methods from ::xounit::TestResult |
addNewResult, addResult, deepErrors, deepFailures, deepPasses, errors, failures, numberOfErrors, numberOfFailures, numberOfPasses, numberOfTests, passPercent, passed, passes, results, tests,
|
Methods from ::xotcl::Object |
#, ., ?, ?code, ?methods, ?object, abstract, copy, coverageFilter, defaultmethod, extractConfigureArg, filterappend, garbageCollect, get#, getClean#, hasclass, init, methodTag, mixinappend, move, profileFilter, self, setParameterDefaults, shell, tclcmd, traceFilter,
|
Instproc Detail |
returns the returned string
::xounit::TestPass instproc message {} { return [ my return ] }
returns the number of errors in this TestResult
::xounit::TestPass instproc numberOfErrors {} { return 0 }
returns the number of failures in this TestResult
::xounit::TestPass instproc numberOfFailures {} { return 0 }
returns the number of passes in this TestResult
::xounit::TestPass instproc numberOfPasses {} { return 1 }
returns the number of tests in this TestResult
::xounit::TestPass instproc numberOfTests {} { return 1 }
returns 1 (true)
::xounit::TestPass instproc passed {} { return 1 }