| 96 | } |
| 97 | |
| 98 | TEST(ProfileSummarizerTest, Empty) { |
| 99 | ProfileSummarizer summarizer; |
| 100 | std::string output = summarizer.GetOutputString(); |
| 101 | EXPECT_GT(output.size(), 0); |
| 102 | } |
| 103 | |
| 104 | TEST(ProfileSummarizerTest, Interpreter) { |
| 105 | BufferedProfiler profiler(1024); |
nothing calls this directly
no test coverage detected