| 24 | // structures more thoroughly. |
| 25 | |
| 26 | TEST(IntArray, TestIntArrayCreate) { |
| 27 | TfLiteIntArray* a = TfLiteIntArrayCreate(0); |
| 28 | TfLiteIntArray* b = TfLiteIntArrayCreate(3); |
| 29 | TfLiteIntArrayFree(a); |
| 30 | TfLiteIntArrayFree(b); |
| 31 | } |
| 32 | |
| 33 | TEST(IntArray, TestIntArrayCopy) { |
| 34 | TfLiteIntArray* a = TfLiteIntArrayCreate(2); |
nothing calls this directly
no test coverage detected