| 977 | }; |
| 978 | |
| 979 | TEST_F(Approx2NullArgs, NullOutputPtr) { |
| 980 | af_array* out_ptr = 0; |
| 981 | ASSERT_EQ(AF_ERR_ARG, af_approx2(out_ptr, this->in, this->pos1, this->pos2, |
| 982 | AF_INTERP_LINEAR, 0.f)); |
| 983 | } |
| 984 | |
| 985 | TEST_F(Approx2NullArgs, NullInputArray) { |
| 986 | ASSERT_EQ(AF_ERR_ARG, af_approx2(&this->out, 0, this->pos1, this->pos2, |
nothing calls this directly
no test coverage detected