| 44 | * - Confirm that context is still nullptr |
| 45 | */ |
| 46 | TEST_CASE(CreateContextWithInvalidTarget, framework::DatasetMode::ALL) |
| 47 | { |
| 48 | AclTarget invalid_target = static_cast<AclTarget>(-1); |
| 49 | AclContext ctx = nullptr; |
| 50 | ARM_COMPUTE_ASSERT(AclCreateContext(&ctx, invalid_target, nullptr) == AclStatus::AclUnsupportedTarget); |
| 51 | ARM_COMPUTE_ASSERT(ctx == nullptr); |
| 52 | } |
| 53 | |
| 54 | /** Test-case for AclCreateContext |
| 55 | * |
nothing calls this directly
no test coverage detected