Home | History | Annotate | Download | only in tests

Lines Matching refs:mock_log

30 static std::vector<std::string> *mock_log;
34 assert(mock_log);
35 mock_log->push_back(s);
40 assert(!mock_log);
41 mock_log = new std::vector<std::string>;
46 assert(mock_log);
47 delete mock_log;
53 assert(mock_log);
54 for (const std::string &s : (*mock_log)) {
57 mock_log->clear();