| 38 | } |
| 39 | |
| 40 | TEST(PreprocessTest, PreprocessWithoutPPTokens) { |
| 41 | PreprocessHarness harness; |
| 42 | const std::string res = harness.preprocess("module top(); endmodule"); |
| 43 | EXPECT_EQ(res, "module top(); endmodule"); |
| 44 | } |
| 45 | |
| 46 | TEST(PreprocessTest, PreprocessSingleParameterExpansion) { |
| 47 | PreprocessHarness harness; |
nothing calls this directly
no test coverage detected