| 25 | #include "dali/core/cuda_stream_pool.h" |
| 26 | |
| 27 | TEST(CAPI2_TensorListTest, NullHandle) { |
| 28 | daliTensorList_h h = nullptr; |
| 29 | int ref = 0; |
| 30 | EXPECT_EQ(DALI_ERROR_INVALID_HANDLE, daliTensorListIncRef(h, &ref)); |
| 31 | EXPECT_EQ(DALI_ERROR_INVALID_HANDLE, daliTensorListDecRef(h, &ref)); |
| 32 | EXPECT_EQ(DALI_ERROR_INVALID_HANDLE, daliTensorListRefCount(h, &ref)); |
| 33 | } |
| 34 | |
| 35 | TEST(CAPI2_TensorListTest, CreateDestroy) { |
| 36 | daliBufferPlacement_t placement{}; |
nothing calls this directly
no test coverage detected