| 441 | }; |
| 442 | |
| 443 | TEST_F(TransformNullArgs, NullOutputPtr) { |
| 444 | af_array *out_ptr = 0; |
| 445 | ASSERT_EQ(AF_ERR_ARG, |
| 446 | af_transform(out_ptr, this->in, this->transform, this->odim0, |
| 447 | this->odim1, this->method, this->invert)); |
| 448 | } |
| 449 | |
| 450 | TEST_F(TransformNullArgs, NullInputArray) { |
| 451 | ASSERT_EQ(AF_ERR_ARG, |
nothing calls this directly
no test coverage detected