| 46 | EAutomationTestFlags::EditorContext | EAutomationTestFlags::EngineFilter) |
| 47 | |
| 48 | bool FMjLevelOpsImportXmlRegistered::RunTest(const FString& Parameters) |
| 49 | { |
| 50 | TestTrue(TEXT("import_xml is in the editor-only op set"), |
| 51 | URLabOpRegistry::IsEditorOnlyOp(TEXT("import_xml"))); |
| 52 | auto Handler = URLabOpRegistry::GetHandler(TEXT("import_xml")); |
| 53 | TestTrue(TEXT("import_xml handler installed by URLabEditor module"), |
| 54 | static_cast<bool>(Handler)); |
| 55 | return true; |
| 56 | } |
| 57 | |
| 58 | // --------------------------------------------------------------------------- |
| 59 | // 2. ImportXmlSync: end-to-end import of a minimal MJCF returns a |
nothing calls this directly
no test coverage detected