| 114 | TYPED_TEST(Det, Small) { detTest<TypeParam>(); } |
| 115 | |
| 116 | TEST(Rank, NullOutput) { |
| 117 | LAPACK_ENABLED_CHECK(); |
| 118 | dim4 dims(3, 3); |
| 119 | af_array in = 0; |
| 120 | af_randu(&in, dims.ndims(), dims.get(), f32); |
| 121 | |
| 122 | ASSERT_EQ(AF_ERR_ARG, af_rank(NULL, in, 1e-6)); |
| 123 | ASSERT_SUCCESS(af_release_array(in)); |
| 124 | } |
nothing calls this directly
no test coverage detected