| 31 | DAS_BASE_BIND_ENUM_98(SomeEnum_16, SomeEnum_16, SomeEnum_16_zero, SomeEnum_16_one, SomeEnum_16_two) |
| 32 | |
| 33 | bool testBindEnumFunction ( Context * context, LineInfoArg * at ) { |
| 34 | if ( !context->thisProgram ) { |
| 35 | context->throw_error_at(at, "missing options rtti"); |
| 36 | } |
| 37 | SimFunction * fn = context->findFunction("testBindEnum"); |
| 38 | if ( !fn ) { |
| 39 | context->throw_error_at(at, "missing testBindEnum(arg:SomeEnum):void function"); |
| 40 | } |
| 41 | return verifyCall<void,SomeEnum>(fn->debugInfo, context->thisProgram->library); |
| 42 | } |
| 43 | |
| 44 | |
| 45 | void Module_UnitTest::addEnumTest(ModuleLibrary &lib) |
nothing calls this directly
no test coverage detected