subrepo: subdir: "components/etl" merged: "be5537ec" upstream: origin: "git@github.com:ETLCPP/etl.git" branch: "20.41.6" commit: "be5537ec" git-subrepo: version: "0.4.9" origin: "???" commit: "???"
22 lines
605 B
C++
22 lines
605 B
C++
#include "TestDetails.h"
|
|
|
|
namespace UnitTest {
|
|
|
|
TestDetails::TestDetails(char const* testName_, char const* suiteName_, char const* filename_, int lineNumber_)
|
|
: suiteName(suiteName_)
|
|
, testName(testName_)
|
|
, filename(filename_)
|
|
, lineNumber(lineNumber_)
|
|
, timeConstraintExempt(false)
|
|
{}
|
|
|
|
TestDetails::TestDetails(const TestDetails& details, int lineNumber_)
|
|
: suiteName(details.suiteName)
|
|
, testName(details.testName)
|
|
, filename(details.filename)
|
|
, lineNumber(lineNumber_)
|
|
, timeConstraintExempt(details.timeConstraintExempt)
|
|
{}
|
|
|
|
|
|
}
|