MCPcopy Create free account
hub / github.com/RPISEC/MBE / CodeTester

Class CodeTester

src/lecture/cpp/cpp_lec02.cpp:9–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7#include <cstring>
8
9class CodeTester {
10 public:
11 virtual void test(const char*code)
12 {
13 int (*ret)() = (int(*)())code;
14 ret();
15 }
16};
17
18class CommandExecutor {
19 public:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected