c# - Any way to build test project to standalone exe? -
i have nunit test project in solution. i'd able run tests on set of different environments using network of virtual machines , aggregate result xmls each machine server.
i guess need install nunit vms in order way. maybe can avoid somehow? hypotetically can change test assembly's output type class library console app , call test methods (those ones right nunit attributes) using reflection manually main method , write xml output myself.
so i'd know if there testing framework can make me. ideally create standalone executable able run on bare installed system, no need install additional testing software. executable run tests , generate test result output (it better nunit-compatible, it's fine if it's not, can handle post processing).
any ideas how can achieve this? in advance.
Comments
Post a Comment