Solved
Forum Discussion
AlexKaras
Champion Level 2
9 years agoHi Vajindar,
This is not possible. TestLeft uses MSTest as a runtime engine and MSTest can consume tests only in a form of DLL (which is the result of the TestLeft project build).
So, TestLeft-based tests cannot be compiled into standalone .exe and executed on the test system. Instead, MSTest must be installed on the test system and provided with the .dll that contains tests.
Note: this is not something that is specific to TestLeft. Pure MSTest-based tests also cannot be compiled into standalone .exe but are in a form of .dll and require MSTest runtime as well. Likewise, NUnit, DUnit and other unit tests are all also in a form of .dll and require corresponding runtime engine on the test system.
vajindarladdad
9 years agoFrequent Contributor
Thanks Alex.
That was really helpful.