File: TestRegistry.cpp

package info (click to toggle)
gtsam 4.2.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 46,108 kB
  • sloc: cpp: 127,191; python: 14,312; xml: 8,442; makefile: 252; sh: 119; ansic: 101
file content (84 lines) | stat: -rw-r--r-- 1,776 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/* ----------------------------------------------------------------------------

 * GTSAM Copyright 2010, Georgia Tech Research Corporation,
 * Atlanta, Georgia 30332-0415
 * All Rights Reserved
 * Authors: Frank Dellaert, et al. (see THANKS for the full author list)

 * See LICENSE for the license information

 * -------------------------------------------------------------------------- */



#include <exception>

#include "Test.h"
#include "Failure.h"
#include "TestResult.h"
#include "TestRegistry.h"

void TestRegistry::addTest (Test *test)
{
  instance ().add (test);
}


int TestRegistry::runAllTests (TestResult& result)
{
  return instance ().run (result);
}


TestRegistry& TestRegistry::instance ()
{
  static TestRegistry registry;
  return registry;
}


void TestRegistry::add (Test *test)
{
  if (tests == 0) {
    test->setNext(0);
    tests = test;
    lastTest = test;
    return;
  }

  test->setNext (0);
  lastTest->setNext(test);
  lastTest = test;
}


int TestRegistry::run (TestResult& result)
{
  result.testsStarted ();

  for (Test *test = tests; test != 0; test = test->getNext ()) {
    if (test->safe()) {
      try {
        test->run (result);
      } catch (std::exception& e) {
        // catch standard exceptions and derivatives
        result.addFailure(
            Failure(test->getName(), test->getFilename(), test->getLineNumber(),
                std::string("Exception: ") + std::string(e.what())));
      } catch (...) {
        // catch all other exceptions
        result.addFailure(
            Failure(test->getName(), test->getFilename(), test->getLineNumber(),
                "ExceptionThrown!"));
      }
    }
    else {
      test->run (result);
    }
  }
  result.testsEnded ();
  return result.getFailureCount();
}