Mark JUnit reporter's internal members as private

This commit is contained in:
Martin Hořeňovský 2021-06-18 00:00:24 +02:00
parent c77ba5314a
commit c1b59b7071
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 4 additions and 3 deletions

View File

@ -38,13 +38,14 @@ namespace Catch {
void testRunEndedCumulative() override;
private:
void writeGroup(TestGroupNode const& groupNode, double suiteTime);
void writeTestCase(TestCaseNode const& testCaseNode);
void writeSection(std::string const& className,
std::string const& rootName,
SectionNode const& sectionNode);
void writeSection( std::string const& className,
std::string const& rootName,
SectionNode const& sectionNode );
void writeAssertions(SectionNode const& sectionNode);
void writeAssertion(AssertionStats const& stats);