Home | History | Annotate | Download | only in testtype

Lines Matching defs:LINE

35  * TestReport   ::= TestResult* Line TimeMetric [FailMessage*] Status.
37 * FailMessage ::= EqLine ?ERROR:? string ?(?string?)? Line Traceback Line.
62 * File "test_rangelib.py", line 129, in test_rangelib
85 * File "foo.py", line 11, in testError
93 * File "foo.py", line 8, in testFail
102 * File "foo.py", line 31, in testFailWithDocString
136 static final String LINE =
218 // parser on the first line of *the entire* test output
252 // separate line before traceback message
257 // separate line before test summary
258 if (line()) {
262 // empty line preceding the separate line
273 // one line test result
278 // two line test result
286 parseError("Second line of test result");
290 parseError("Second line of test result");
320 // skip the optional docstring line if there is one; do nothing otherwise
321 if (!line()) {
328 if (!line()) {
336 // traceback is always terminated with LINE or EQLINE
337 while (!line() && !eqline()) {
345 if (line()) {
410 boolean line() {
411 return mCurrentLine.startsWith(LINE);
423 * Advance to the next non-empty line.
424 * @return true if a non-empty line was found, false otherwise.
439 String.format("Expected \"%s\" on line %d, found %s instead",