You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
refactored projects to share files avoiding having to duplicate changes between VS2019 and VS022 added menu to improved discoverability of features added option to use P4V diff instead of VS diff #preflight 635c17593c0af539fd57079d [CL 22833331 by joe pribele in ue5-main branch]
#Things to know
-
dll must be called XXX.TestAdapter.dll. VS looks for dll's with this pattern.
-
source.extension.vsixmanifest has a reference to this project. that does the deployment of the dll. Under Assets with a type of
UnitTestExtension -
TestDiscoverer relies on a file called
(exe).is_unreal_test existing. The TestTargetRules currently outputs this file The reason for this is to quickly identify text executables. Another option would be add a special string into the exe and then look for it in the binary
#Debugging
Easiest way to debug the TestDisoverer or the TestExecutor by adding System.Diagnostics.Debugger.Launch(); to
DiscoverTests or RunTests respectively.