| 46 | }; |
| 47 | |
| 48 | TEST_F(TestFunctionSignature, TestToString) { |
| 49 | EXPECT_EQ( |
| 50 | FunctionSignature("myfunc", {arrow::int32(), arrow::float32()}, arrow::float64()) |
| 51 | .ToString(), |
| 52 | "double myfunc(int32, float)"); |
| 53 | } |
| 54 | |
| 55 | TEST_F(TestFunctionSignature, TestEqualsName) { |
| 56 | EXPECT_EQ(FunctionSignature("add", {arrow::int32()}, arrow::int32()), |
nothing calls this directly
no test coverage detected