MCPcopy Create free account
hub / github.com/PlatformLab/NanoLog / SimpleTest

Class SimpleTest

integrationTest/SimpleTestObject.h:33–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31#include "folder/Sample.h"
32
33class SimpleTest {
34 int number;
35
36public:
37 SimpleTest(int number)
38 : number(number)
39 {}
40
41 void logSomething();
42 void wholeBunchOfLogStatements();
43 inline void logStatementsInHeader() {
44 /// These should be assigned different ids due to line number
45 NANO_LOG(NOTICE, "In the header, I am %d", number);
46 NANO_LOG(NOTICE, "In the header, I am %d x2", number);
47 }
48};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected