├── .gitignore ├── CONTRIBUTING.md ├── DaedalicTestAutomationPlugin.Automation ├── DaeGauntletTest.cs ├── DaeTestConfig.cs ├── DaedalicTestAutomationPlugin.Automation.csproj └── Properties │ └── AssemblyInfo.cs ├── DaedalicTestAutomationPlugin ├── Content │ ├── BP_DaeTestBlueprintMacroLibrary.uasset │ ├── ReportTemplates │ │ ├── PerformanceReport.template.html │ │ ├── PerformanceReportBudgetViolation.template.html │ │ ├── PerformanceReportMap.template.html │ │ └── bootstrap.min.css │ ├── TestAlwaysFail │ │ ├── BP_TestAlwaysFail.uasset │ │ └── TestAlwaysFail.umap │ ├── TestAlwaysSkip │ │ ├── BP_TestAlwaysSkip.uasset │ │ └── TestAlwaysSkip.umap │ ├── TestAlwaysSucceed │ │ ├── BP_TestAlwaysSucceed.uasset │ │ └── TestAlwaysSucceed.umap │ ├── TestAlwaysSucceedWithDelay │ │ ├── BP_TestAlwaysSucceedWithDelay.uasset │ │ └── TestAlwaysSucceedWithDelay.umap │ ├── TestAlwaysTimeout │ │ ├── BP_TestAlwaysTimeout.uasset │ │ └── TestAlwaysTimeout.umap │ ├── TestAssume │ │ ├── BP_TestAssume.uasset │ │ └── TestAssume.umap │ ├── TestBeforeAfter │ │ ├── BP_TestBeforeAfter.uasset │ │ ├── BP_TestSuiteBeforeAfter.uasset │ │ └── TestBeforeAfter.umap │ ├── TestCalculator │ │ ├── BP_TestCalculator.uasset │ │ ├── BP_TestCalculatorAddsNumbers.uasset │ │ └── TestCalculator.umap │ ├── TestCompare │ │ ├── BP_TestCompare.uasset │ │ └── TestCompare.umap │ ├── TestEquals │ │ ├── BP_TestEquals.uasset │ │ └── TestEquals.umap │ ├── TestParameterized │ │ ├── BP_TestParameter1.uasset │ │ ├── BP_TestParameter2.uasset │ │ ├── BP_TestParameterProvider.uasset │ │ ├── BP_TestParameterized.uasset │ │ ├── TestParameterized.umap │ │ └── TestParameterized_Streaming.umap │ └── TestPerformance │ │ ├── BP_TestPerformancePawn.uasset │ │ └── TestPerformance.umap ├── DaedalicTestAutomationPlugin.uplugin ├── Resources │ └── Icon128.png └── Source │ ├── DaedalicTestAutomationPlugin │ ├── DaedalicTestAutomationPlugin.Build.cs │ ├── Private │ │ ├── DaeDelayFramesAction.cpp │ │ ├── DaeDelayUntilTriggeredAction.cpp │ │ ├── DaeGauntletStates.cpp │ │ ├── DaeGauntletTestController.cpp │ │ ├── DaeTestActor.cpp │ │ ├── DaeTestActorBlueprint.cpp │ │ ├── DaeTestAssertBlueprintFunctionLibrary.cpp │ │ ├── DaeTestAssumeBlueprintFunctionLibrary.cpp │ │ ├── DaeTestAutomationPluginSettings.cpp │ │ ├── DaeTestDelayBlueprintFunctionLibrary.cpp │ │ ├── DaeTestInputBlueprintFunctionLibrary.cpp │ │ ├── DaeTestLogCategory.cpp │ │ ├── DaeTestParameterProviderActor.cpp │ │ ├── DaeTestParameterProviderActorBlueprint.cpp │ │ ├── DaeTestPerformanceBudgetActor.cpp │ │ ├── DaeTestPerformanceBudgetResultData.cpp │ │ ├── DaeTestReportWriter.cpp │ │ ├── DaeTestReportWriterJUnit.cpp │ │ ├── DaeTestReportWriterPerformance.cpp │ │ ├── DaeTestReportWriterSet.cpp │ │ ├── DaeTestResult.cpp │ │ ├── DaeTestSuiteActor.cpp │ │ ├── DaeTestSuiteActorBlueprint.cpp │ │ ├── DaeTestSuiteResult.cpp │ │ ├── DaeTestTriggerBox.cpp │ │ └── DaedalicTestAutomationPlugin.cpp │ └── Public │ │ ├── DaeDelayFramesAction.h │ │ ├── DaeDelayUntilTriggeredAction.h │ │ ├── DaeGauntletStates.h │ │ ├── DaeGauntletTestController.h │ │ ├── DaeTestActor.h │ │ ├── DaeTestActorBlueprint.h │ │ ├── DaeTestAssertBlueprintFunctionLibrary.h │ │ ├── DaeTestAssumeBlueprintFunctionLibrary.h │ │ ├── DaeTestAutomationPluginSettings.h │ │ ├── DaeTestComparisonMethod.h │ │ ├── DaeTestDelayBlueprintFunctionLibrary.h │ │ ├── DaeTestInputBlueprintFunctionLibrary.h │ │ ├── DaeTestLogCategory.h │ │ ├── DaeTestParameterProviderActor.h │ │ ├── DaeTestParameterProviderActorBlueprint.h │ │ ├── DaeTestPerformanceBudgetActor.h │ │ ├── DaeTestPerformanceBudgetResultData.h │ │ ├── DaeTestPerformanceBudgetViolation.h │ │ ├── DaeTestReportWriter.h │ │ ├── DaeTestReportWriterJUnit.h │ │ ├── DaeTestReportWriterPerformance.h │ │ ├── DaeTestReportWriterSet.h │ │ ├── DaeTestResult.h │ │ ├── DaeTestResultData.cpp │ │ ├── DaeTestResultData.h │ │ ├── DaeTestSuiteActor.h │ │ ├── DaeTestSuiteActorBlueprint.h │ │ ├── DaeTestSuiteResult.h │ │ ├── DaeTestTriggerBox.h │ │ └── IDaedalicTestAutomationPlugin.h │ └── DaedalicTestAutomationPluginEditor │ ├── DaedalicTestAutomationPluginEditor.Build.cs │ ├── Private │ ├── AssetTypeActions_DaeTestActorBlueprint.cpp │ ├── AssetTypeActions_DaeTestParameterProviderActorBlueprint.cpp │ ├── AssetTypeActions_DaeTestSuiteActorBlueprint.cpp │ ├── AutomationTestFramework │ │ ├── DaeTestAutomationPluginAutomationTestFrameworkCommands.cpp │ │ ├── DaeTestAutomationPluginAutomationTestFrameworkIntegration.cpp │ │ ├── DaeTestAutomationPluginAutomationTestFrameworkTest.cpp │ │ └── DaeTestAutomationPluginAutomationTestFrameworkTestContext.cpp │ ├── DaeTestActorBlueprintFactory.cpp │ ├── DaeTestEditorLogCategory.cpp │ ├── DaeTestParameterProviderActorBlueprintFactory.cpp │ ├── DaeTestSuiteActorBlueprintFactory.cpp │ └── DaedalicTestAutomationPluginEditor.cpp │ └── Public │ ├── AssetTypeActions_DaeTestActorBlueprint.h │ ├── AssetTypeActions_DaeTestParameterProviderActorBlueprint.h │ ├── AssetTypeActions_DaeTestSuiteActorBlueprint.h │ ├── AutomationTestFramework │ ├── DaeTestAutomationPluginAutomationTestFrameworkCommands.h │ ├── DaeTestAutomationPluginAutomationTestFrameworkIntegration.h │ ├── DaeTestAutomationPluginAutomationTestFrameworkTest.h │ └── DaeTestAutomationPluginAutomationTestFrameworkTestContext.h │ ├── DaeTestActorBlueprintFactory.h │ ├── DaeTestEditorLogCategory.h │ ├── DaeTestParameterProviderActorBlueprintFactory.h │ ├── DaeTestSuiteActorBlueprintFactory.h │ └── IDaedalicTestAutomationPluginEditor.h ├── Documentation ├── AssertCompareByte.png ├── AssertCompareFloat.png ├── AssertCompareInteger.png ├── AssertCompareInteger64.png ├── AssertEqualByte.png ├── AssertEqualFloat.png ├── AssertEqualInteger.png ├── AssertEqualInteger64.png ├── AssertEqualName.png ├── AssertEqualRotator.png ├── AssertEqualString.png ├── AssertEqualText.png ├── AssertEqualTransform.png ├── AssertEqualVector.png ├── AssertFail.png ├── AssertFalse.png ├── AssertImageIsSet.png ├── AssertInRangeByte.png ├── AssertInRangeFloat.png ├── AssertInRangeInteger.png ├── AssertInRangeInteger64.png ├── AssertInvalid.png ├── AssertNotEqualByte.png ├── AssertNotEqualFloat.png ├── AssertNotEqualInteger.png ├── AssertNotEqualInteger64.png ├── AssertNotEqualName.png ├── AssertNotEqualRotator.png ├── AssertNotEqualString.png ├── AssertNotEqualText.png ├── AssertNotEqualTransform.png ├── AssertNotEqualVector.png ├── AssertNotInRangeByte.png ├── AssertNotInRangeFloat.png ├── AssertNotInRangeInteger.png ├── AssertNotInRangeInteger64.png ├── AssertRichTextIsSet.png ├── AssertTextIsSet.png ├── AssertTrue.png ├── AssertValid.png ├── AssertWasNotTriggered.png ├── AssertWasTriggered.png ├── AssertWidgetIsVisible.png ├── Assertions.md ├── Assumption.png ├── AutomationWindow.png ├── CreatingTests.png ├── CreatingTests.vsdx ├── DelayFrames.png ├── DelayUntil.png ├── DelayUntilInvalid.png ├── DelayUntilTriggered.png ├── DelayUntilValid.png ├── DelayUntilWidgetVisible.png ├── Delays.md ├── JUnitReport.png ├── ParameterProviderImplementation01.png ├── ParameterProviderImplementation02.png ├── ParameterProviders.png ├── ParameterizedTest.png ├── PerformanceReport.png ├── PerformanceTest.png ├── RunningTests.png ├── RunningTests.vsdx ├── SettingsConsoleVariables.png ├── SettingsTestMaps.png ├── SimpleTest.png ├── SimulatingInput.png ├── SkipReason.png ├── TestParameter.png └── TestTimeouts.png ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin.Automation/DaeGauntletTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin.Automation/DaeGauntletTest.cs -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin.Automation/DaeTestConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin.Automation/DaeTestConfig.cs -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin.Automation/DaedalicTestAutomationPlugin.Automation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin.Automation/DaedalicTestAutomationPlugin.Automation.csproj -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin.Automation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin.Automation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/BP_DaeTestBlueprintMacroLibrary.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/BP_DaeTestBlueprintMacroLibrary.uasset -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/ReportTemplates/PerformanceReport.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/ReportTemplates/PerformanceReport.template.html -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/ReportTemplates/PerformanceReportBudgetViolation.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/ReportTemplates/PerformanceReportBudgetViolation.template.html -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/ReportTemplates/PerformanceReportMap.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/ReportTemplates/PerformanceReportMap.template.html -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/ReportTemplates/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/ReportTemplates/bootstrap.min.css -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestAlwaysFail/BP_TestAlwaysFail.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestAlwaysFail/BP_TestAlwaysFail.uasset -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestAlwaysFail/TestAlwaysFail.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestAlwaysFail/TestAlwaysFail.umap -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestAlwaysSkip/BP_TestAlwaysSkip.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestAlwaysSkip/BP_TestAlwaysSkip.uasset -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestAlwaysSkip/TestAlwaysSkip.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestAlwaysSkip/TestAlwaysSkip.umap -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestAlwaysSucceed/BP_TestAlwaysSucceed.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestAlwaysSucceed/BP_TestAlwaysSucceed.uasset -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestAlwaysSucceed/TestAlwaysSucceed.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestAlwaysSucceed/TestAlwaysSucceed.umap -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestAlwaysSucceedWithDelay/BP_TestAlwaysSucceedWithDelay.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestAlwaysSucceedWithDelay/BP_TestAlwaysSucceedWithDelay.uasset -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestAlwaysSucceedWithDelay/TestAlwaysSucceedWithDelay.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestAlwaysSucceedWithDelay/TestAlwaysSucceedWithDelay.umap -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestAlwaysTimeout/BP_TestAlwaysTimeout.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestAlwaysTimeout/BP_TestAlwaysTimeout.uasset -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestAlwaysTimeout/TestAlwaysTimeout.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestAlwaysTimeout/TestAlwaysTimeout.umap -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestAssume/BP_TestAssume.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestAssume/BP_TestAssume.uasset -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestAssume/TestAssume.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestAssume/TestAssume.umap -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestBeforeAfter/BP_TestBeforeAfter.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestBeforeAfter/BP_TestBeforeAfter.uasset -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestBeforeAfter/BP_TestSuiteBeforeAfter.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestBeforeAfter/BP_TestSuiteBeforeAfter.uasset -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestBeforeAfter/TestBeforeAfter.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestBeforeAfter/TestBeforeAfter.umap -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestCalculator/BP_TestCalculator.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestCalculator/BP_TestCalculator.uasset -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestCalculator/BP_TestCalculatorAddsNumbers.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestCalculator/BP_TestCalculatorAddsNumbers.uasset -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestCalculator/TestCalculator.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestCalculator/TestCalculator.umap -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestCompare/BP_TestCompare.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestCompare/BP_TestCompare.uasset -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestCompare/TestCompare.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestCompare/TestCompare.umap -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestEquals/BP_TestEquals.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestEquals/BP_TestEquals.uasset -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestEquals/TestEquals.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestEquals/TestEquals.umap -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestParameterized/BP_TestParameter1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestParameterized/BP_TestParameter1.uasset -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestParameterized/BP_TestParameter2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestParameterized/BP_TestParameter2.uasset -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestParameterized/BP_TestParameterProvider.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestParameterized/BP_TestParameterProvider.uasset -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestParameterized/BP_TestParameterized.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestParameterized/BP_TestParameterized.uasset -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestParameterized/TestParameterized.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestParameterized/TestParameterized.umap -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestParameterized/TestParameterized_Streaming.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestParameterized/TestParameterized_Streaming.umap -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestPerformance/BP_TestPerformancePawn.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestPerformance/BP_TestPerformancePawn.uasset -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Content/TestPerformance/TestPerformance.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Content/TestPerformance/TestPerformance.umap -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/DaedalicTestAutomationPlugin.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/DaedalicTestAutomationPlugin.uplugin -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Resources/Icon128.png -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/DaedalicTestAutomationPlugin.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/DaedalicTestAutomationPlugin.Build.cs -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeDelayFramesAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeDelayFramesAction.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeDelayUntilTriggeredAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeDelayUntilTriggeredAction.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeGauntletStates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeGauntletStates.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeGauntletTestController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeGauntletTestController.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestActor.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestActorBlueprint.cpp: -------------------------------------------------------------------------------- 1 | #include "DaeTestActorBlueprint.h" 2 | -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestAssertBlueprintFunctionLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestAssertBlueprintFunctionLibrary.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestAssumeBlueprintFunctionLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestAssumeBlueprintFunctionLibrary.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestAutomationPluginSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestAutomationPluginSettings.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestDelayBlueprintFunctionLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestDelayBlueprintFunctionLibrary.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestInputBlueprintFunctionLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestInputBlueprintFunctionLibrary.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestLogCategory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestLogCategory.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestParameterProviderActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestParameterProviderActor.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestParameterProviderActorBlueprint.cpp: -------------------------------------------------------------------------------- 1 | #include "DaeTestParameterProviderActorBlueprint.h" 2 | -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestPerformanceBudgetActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestPerformanceBudgetActor.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestPerformanceBudgetResultData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestPerformanceBudgetResultData.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestReportWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestReportWriter.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestReportWriterJUnit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestReportWriterJUnit.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestReportWriterPerformance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestReportWriterPerformance.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestReportWriterSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestReportWriterSet.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestResult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestResult.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestSuiteActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestSuiteActor.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestSuiteActorBlueprint.cpp: -------------------------------------------------------------------------------- 1 | #include "DaeTestSuiteActorBlueprint.h" 2 | -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestSuiteResult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestSuiteResult.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestTriggerBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaeTestTriggerBox.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaedalicTestAutomationPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Private/DaedalicTestAutomationPlugin.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeDelayFramesAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeDelayFramesAction.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeDelayUntilTriggeredAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeDelayUntilTriggeredAction.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeGauntletStates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeGauntletStates.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeGauntletTestController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeGauntletTestController.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestActor.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestActorBlueprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestActorBlueprint.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestAssertBlueprintFunctionLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestAssertBlueprintFunctionLibrary.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestAssumeBlueprintFunctionLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestAssumeBlueprintFunctionLibrary.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestAutomationPluginSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestAutomationPluginSettings.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestComparisonMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestComparisonMethod.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestDelayBlueprintFunctionLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestDelayBlueprintFunctionLibrary.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestInputBlueprintFunctionLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestInputBlueprintFunctionLibrary.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestLogCategory.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | DECLARE_LOG_CATEGORY_EXTERN(LogDaeTest, Log, All); 6 | -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestParameterProviderActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestParameterProviderActor.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestParameterProviderActorBlueprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestParameterProviderActorBlueprint.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestPerformanceBudgetActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestPerformanceBudgetActor.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestPerformanceBudgetResultData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestPerformanceBudgetResultData.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestPerformanceBudgetViolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestPerformanceBudgetViolation.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestReportWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestReportWriter.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestReportWriterJUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestReportWriterJUnit.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestReportWriterPerformance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestReportWriterPerformance.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestReportWriterSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestReportWriterSet.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestResult.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestResultData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestResultData.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestResultData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestResultData.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestSuiteActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestSuiteActor.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestSuiteActorBlueprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestSuiteActorBlueprint.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestSuiteResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestSuiteResult.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestTriggerBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/DaeTestTriggerBox.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/IDaedalicTestAutomationPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPlugin/Public/IDaedalicTestAutomationPlugin.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/DaedalicTestAutomationPluginEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/DaedalicTestAutomationPluginEditor.Build.cs -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/AssetTypeActions_DaeTestActorBlueprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/AssetTypeActions_DaeTestActorBlueprint.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/AssetTypeActions_DaeTestParameterProviderActorBlueprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/AssetTypeActions_DaeTestParameterProviderActorBlueprint.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/AssetTypeActions_DaeTestSuiteActorBlueprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/AssetTypeActions_DaeTestSuiteActorBlueprint.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/AutomationTestFramework/DaeTestAutomationPluginAutomationTestFrameworkCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/AutomationTestFramework/DaeTestAutomationPluginAutomationTestFrameworkCommands.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/AutomationTestFramework/DaeTestAutomationPluginAutomationTestFrameworkIntegration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/AutomationTestFramework/DaeTestAutomationPluginAutomationTestFrameworkIntegration.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/AutomationTestFramework/DaeTestAutomationPluginAutomationTestFrameworkTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/AutomationTestFramework/DaeTestAutomationPluginAutomationTestFrameworkTest.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/AutomationTestFramework/DaeTestAutomationPluginAutomationTestFrameworkTestContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/AutomationTestFramework/DaeTestAutomationPluginAutomationTestFrameworkTestContext.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/DaeTestActorBlueprintFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/DaeTestActorBlueprintFactory.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/DaeTestEditorLogCategory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/DaeTestEditorLogCategory.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/DaeTestParameterProviderActorBlueprintFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/DaeTestParameterProviderActorBlueprintFactory.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/DaeTestSuiteActorBlueprintFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/DaeTestSuiteActorBlueprintFactory.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/DaedalicTestAutomationPluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Private/DaedalicTestAutomationPluginEditor.cpp -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Public/AssetTypeActions_DaeTestActorBlueprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Public/AssetTypeActions_DaeTestActorBlueprint.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Public/AssetTypeActions_DaeTestParameterProviderActorBlueprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Public/AssetTypeActions_DaeTestParameterProviderActorBlueprint.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Public/AssetTypeActions_DaeTestSuiteActorBlueprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Public/AssetTypeActions_DaeTestSuiteActorBlueprint.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Public/AutomationTestFramework/DaeTestAutomationPluginAutomationTestFrameworkCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Public/AutomationTestFramework/DaeTestAutomationPluginAutomationTestFrameworkCommands.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Public/AutomationTestFramework/DaeTestAutomationPluginAutomationTestFrameworkIntegration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Public/AutomationTestFramework/DaeTestAutomationPluginAutomationTestFrameworkIntegration.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Public/AutomationTestFramework/DaeTestAutomationPluginAutomationTestFrameworkTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Public/AutomationTestFramework/DaeTestAutomationPluginAutomationTestFrameworkTest.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Public/AutomationTestFramework/DaeTestAutomationPluginAutomationTestFrameworkTestContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Public/AutomationTestFramework/DaeTestAutomationPluginAutomationTestFrameworkTestContext.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Public/DaeTestActorBlueprintFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Public/DaeTestActorBlueprintFactory.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Public/DaeTestEditorLogCategory.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | DECLARE_LOG_CATEGORY_EXTERN(LogDaeTestEditor, Log, All); 6 | -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Public/DaeTestParameterProviderActorBlueprintFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Public/DaeTestParameterProviderActorBlueprintFactory.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Public/DaeTestSuiteActorBlueprintFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Public/DaeTestSuiteActorBlueprintFactory.h -------------------------------------------------------------------------------- /DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Public/IDaedalicTestAutomationPluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/DaedalicTestAutomationPlugin/Source/DaedalicTestAutomationPluginEditor/Public/IDaedalicTestAutomationPluginEditor.h -------------------------------------------------------------------------------- /Documentation/AssertCompareByte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertCompareByte.png -------------------------------------------------------------------------------- /Documentation/AssertCompareFloat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertCompareFloat.png -------------------------------------------------------------------------------- /Documentation/AssertCompareInteger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertCompareInteger.png -------------------------------------------------------------------------------- /Documentation/AssertCompareInteger64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertCompareInteger64.png -------------------------------------------------------------------------------- /Documentation/AssertEqualByte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertEqualByte.png -------------------------------------------------------------------------------- /Documentation/AssertEqualFloat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertEqualFloat.png -------------------------------------------------------------------------------- /Documentation/AssertEqualInteger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertEqualInteger.png -------------------------------------------------------------------------------- /Documentation/AssertEqualInteger64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertEqualInteger64.png -------------------------------------------------------------------------------- /Documentation/AssertEqualName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertEqualName.png -------------------------------------------------------------------------------- /Documentation/AssertEqualRotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertEqualRotator.png -------------------------------------------------------------------------------- /Documentation/AssertEqualString.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertEqualString.png -------------------------------------------------------------------------------- /Documentation/AssertEqualText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertEqualText.png -------------------------------------------------------------------------------- /Documentation/AssertEqualTransform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertEqualTransform.png -------------------------------------------------------------------------------- /Documentation/AssertEqualVector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertEqualVector.png -------------------------------------------------------------------------------- /Documentation/AssertFail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertFail.png -------------------------------------------------------------------------------- /Documentation/AssertFalse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertFalse.png -------------------------------------------------------------------------------- /Documentation/AssertImageIsSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertImageIsSet.png -------------------------------------------------------------------------------- /Documentation/AssertInRangeByte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertInRangeByte.png -------------------------------------------------------------------------------- /Documentation/AssertInRangeFloat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertInRangeFloat.png -------------------------------------------------------------------------------- /Documentation/AssertInRangeInteger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertInRangeInteger.png -------------------------------------------------------------------------------- /Documentation/AssertInRangeInteger64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertInRangeInteger64.png -------------------------------------------------------------------------------- /Documentation/AssertInvalid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertInvalid.png -------------------------------------------------------------------------------- /Documentation/AssertNotEqualByte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertNotEqualByte.png -------------------------------------------------------------------------------- /Documentation/AssertNotEqualFloat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertNotEqualFloat.png -------------------------------------------------------------------------------- /Documentation/AssertNotEqualInteger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertNotEqualInteger.png -------------------------------------------------------------------------------- /Documentation/AssertNotEqualInteger64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertNotEqualInteger64.png -------------------------------------------------------------------------------- /Documentation/AssertNotEqualName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertNotEqualName.png -------------------------------------------------------------------------------- /Documentation/AssertNotEqualRotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertNotEqualRotator.png -------------------------------------------------------------------------------- /Documentation/AssertNotEqualString.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertNotEqualString.png -------------------------------------------------------------------------------- /Documentation/AssertNotEqualText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertNotEqualText.png -------------------------------------------------------------------------------- /Documentation/AssertNotEqualTransform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertNotEqualTransform.png -------------------------------------------------------------------------------- /Documentation/AssertNotEqualVector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertNotEqualVector.png -------------------------------------------------------------------------------- /Documentation/AssertNotInRangeByte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertNotInRangeByte.png -------------------------------------------------------------------------------- /Documentation/AssertNotInRangeFloat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertNotInRangeFloat.png -------------------------------------------------------------------------------- /Documentation/AssertNotInRangeInteger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertNotInRangeInteger.png -------------------------------------------------------------------------------- /Documentation/AssertNotInRangeInteger64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertNotInRangeInteger64.png -------------------------------------------------------------------------------- /Documentation/AssertRichTextIsSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertRichTextIsSet.png -------------------------------------------------------------------------------- /Documentation/AssertTextIsSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertTextIsSet.png -------------------------------------------------------------------------------- /Documentation/AssertTrue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertTrue.png -------------------------------------------------------------------------------- /Documentation/AssertValid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertValid.png -------------------------------------------------------------------------------- /Documentation/AssertWasNotTriggered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertWasNotTriggered.png -------------------------------------------------------------------------------- /Documentation/AssertWasTriggered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertWasTriggered.png -------------------------------------------------------------------------------- /Documentation/AssertWidgetIsVisible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AssertWidgetIsVisible.png -------------------------------------------------------------------------------- /Documentation/Assertions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/Assertions.md -------------------------------------------------------------------------------- /Documentation/Assumption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/Assumption.png -------------------------------------------------------------------------------- /Documentation/AutomationWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/AutomationWindow.png -------------------------------------------------------------------------------- /Documentation/CreatingTests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/CreatingTests.png -------------------------------------------------------------------------------- /Documentation/CreatingTests.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/CreatingTests.vsdx -------------------------------------------------------------------------------- /Documentation/DelayFrames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/DelayFrames.png -------------------------------------------------------------------------------- /Documentation/DelayUntil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/DelayUntil.png -------------------------------------------------------------------------------- /Documentation/DelayUntilInvalid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/DelayUntilInvalid.png -------------------------------------------------------------------------------- /Documentation/DelayUntilTriggered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/DelayUntilTriggered.png -------------------------------------------------------------------------------- /Documentation/DelayUntilValid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/DelayUntilValid.png -------------------------------------------------------------------------------- /Documentation/DelayUntilWidgetVisible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/DelayUntilWidgetVisible.png -------------------------------------------------------------------------------- /Documentation/Delays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/Delays.md -------------------------------------------------------------------------------- /Documentation/JUnitReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/JUnitReport.png -------------------------------------------------------------------------------- /Documentation/ParameterProviderImplementation01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/ParameterProviderImplementation01.png -------------------------------------------------------------------------------- /Documentation/ParameterProviderImplementation02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/ParameterProviderImplementation02.png -------------------------------------------------------------------------------- /Documentation/ParameterProviders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/ParameterProviders.png -------------------------------------------------------------------------------- /Documentation/ParameterizedTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/ParameterizedTest.png -------------------------------------------------------------------------------- /Documentation/PerformanceReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/PerformanceReport.png -------------------------------------------------------------------------------- /Documentation/PerformanceTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/PerformanceTest.png -------------------------------------------------------------------------------- /Documentation/RunningTests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/RunningTests.png -------------------------------------------------------------------------------- /Documentation/RunningTests.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/RunningTests.vsdx -------------------------------------------------------------------------------- /Documentation/SettingsConsoleVariables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/SettingsConsoleVariables.png -------------------------------------------------------------------------------- /Documentation/SettingsTestMaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/SettingsTestMaps.png -------------------------------------------------------------------------------- /Documentation/SimpleTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/SimpleTest.png -------------------------------------------------------------------------------- /Documentation/SimulatingInput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/SimulatingInput.png -------------------------------------------------------------------------------- /Documentation/SkipReason.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/SkipReason.png -------------------------------------------------------------------------------- /Documentation/TestParameter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/TestParameter.png -------------------------------------------------------------------------------- /Documentation/TestTimeouts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/Documentation/TestTimeouts.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalicEntertainment/ue4-test-automation/HEAD/README.md --------------------------------------------------------------------------------