MCPcopy Create free account
hub / github.com/Compaile/ctrack / JUnitTestCase

Class JUnitTestCase

test/doctest.h:5775–5783  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5773 };
5774
5775 struct JUnitTestCase
5776 {
5777 JUnitTestCase(const std::string& _classname, const std::string& _name)
5778 : classname(_classname), name(_name), time(0), failures() {}
5779
5780 std::string classname, name;
5781 double time;
5782 std::vector<JUnitTestMessage> failures, errors;
5783 };
5784
5785 void add(const std::string& classname, const std::string& name) {
5786 testcases.emplace_back(classname, name);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected