Uploaded image for project: 'Code Tools'
  1. Code Tools
  2. CODETOOLS-7902802

(RunTestsCommand) carefully calculate amount of not_run tests

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • jt6.0
    • jt6.0
    • tools
    • b15

      Historically this is how the number of "not run" tests is calculated.

              int p = stats[Status.PASSED];
              int f = stats[Status.FAILED];
              int e = stats[Status.ERROR];
              int nr = stats[Status.NOT_RUN] =
                  harness.getTestsFoundCount() - p - f - e;

      However it is possible that in special circumstances the getTestsFoundCount() number could be lower than amount of passed tests - if tests are added dynamically.

      This could lead to negative number of not-run tests and could confuse stats formatter

            dbessono Dmitry Bessonov
            dbessono Dmitry Bessonov
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: