I'm trying out the Test Plugin feature. I built a simple test plugin dll in Visual Studio and was able to run the tests succesfully using TestPluginRunner.exe. When I try to run the tests in same plugin dll using DllPluginTester.exe, it always returns "OK (0 tests)".
I'm trying to setup tests so developers can run the GUI while developing and we can run the command line version during the build. How do I get the DLLPluginTester to work? Or is there a different way to run a plugin on the command line?
Thanks,
John
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm trying out the Test Plugin feature. I built a simple test plugin dll in Visual Studio and was able to run the tests succesfully using TestPluginRunner.exe. When I try to run the tests in same plugin dll using DllPluginTester.exe, it always returns "OK (0 tests)".
I'm trying to setup tests so developers can run the GUI while developing and we can run the command line version during the build. How do I get the DLLPluginTester to work? Or is there a different way to run a plugin on the command line?
Thanks,
John
Just found the problem. Turns out I needed to build DllPluginTester_dll.exe and DllPluginTesterd_dll.exe and use those instead. Works fine now.