FastLED 3.9.15
Loading...
Searching...
No Matches

◆ testRunStart()

void fl::test::TAPReporter::testRunStart ( )
overridevirtual

Implements fl::test::IReporter.

Definition at line 845 of file fltest.cpp.hpp.

845 {
846 mTestNumber = 0;
847 mStreamingOutput.clear();
848
849 // Output TAP version header
850 output("TAP version 13");
851
852 // If we know the total, output the plan at the start
853 if (mTotalTests > 0) {
854 fl::sstream ss;
855 ss << "1.." << mTotalTests;
856 output(ss.str().c_str());
857 }
858}
const char * c_str() const FL_NOEXCEPT
string str() const FL_NOEXCEPT
Definition strstream.h:43
void output(const char *line) FL_NOEXCEPT
fl::string mStreamingOutput
Definition fltest.h:679

References fl::basic_string::c_str(), FL_NOEXCEPT, mStreamingOutput, mTestNumber, mTotalTests, output(), and fl::sstream::str().

+ Here is the call graph for this function: