| 704 | : VerifyApplication::Test(name,0,VerifyApplication::TEST_SHOULD_PASS), testID(testID) {} |
| 705 | |
| 706 | VerifyApplication::TestReturnValue run(VerifyApplication* state, bool silent) |
| 707 | { |
| 708 | RTCDeviceRef device = rtcNewDevice(state->rtcore.c_str()); |
| 709 | AssertNoError(device); |
| 710 | return (VerifyApplication::TestReturnValue)rtcGetDeviceProperty(device,(RTCDeviceProperty)(3000000+testID)); |
| 711 | } |
| 712 | |
| 713 | size_t testID; |
| 714 | }; |
nothing calls this directly
no test coverage detected