| 5 | #include <stdlib.h> |
| 6 | |
| 7 | TEST(FunctionTests, FunctionSanityCheck) { |
| 8 | Function f; |
| 9 | f.initialize(16, 1.0); |
| 10 | f.destroy(); |
| 11 | } |
| 12 | |
| 13 | TEST(FunctionTests, FunctionTriangleFilterTest) { |
| 14 | Function f; |
nothing calls this directly
no test coverage detected