NUnit test fails to run in TestComplete
I have a Visual Studio NUnit C# Selenium test project which runs tests fine. I can also run these tests from the nunit-console.exe test runner: nunit3-console.exe testcore.dll --where "namespace == 'CreditTests'". I have configured TestComplete to run this NUnit test but when I press Run, it does not run the test and ends in 1 second with an empty result.
Is there a TestComplete log that I can inspect to figure what error occurred?
After reading through https://support.smartbear.com/testcomplete/docs/testing-with/advanced/unit-testing/net-applications.html I've created a simple C# .NET 4.8 application with some basic unit tests, which has been picked up by TCUnitTest, shown below,
Unit tests within my applicationWhen I run the following code, to execute all unit tests,
UnitTesting["TCUnitTest"]["Execute"]();all tests are executed, and the last test displays a message box,
Message box shown when test TestMsgBox is calledI couldn't get .NET 8.0 to work, and I'm not sure if it's supported.