0

I try to run my tests via nunit3-console. Running via Visual Studio works good. I execute this command:

$ nunit3-console ComplexUI.dll

but get the following input:

NUnit.Engine.NUnitEngineException : An exception occurred in the driver while loading tests.
  ----> System.IO.FileNotFoundException : ?? ??????? ????????? ???? ??? ?????? "nunit.framework, Version=3.11.0.0, Culture=neutral, PublicKeyToken=2638cd05610744eb" ???? ???? ?? ?? ????????????. ?? ??????? ????? ????????? ????.
--NUnitEngineException
An exception occurred in the driver while loading tests.

Symbols ???? may be in cause of my locale.

I have no idea how to resolve it

IvanMikhalka
  • 184
  • 10
  • Have you moved `ComplexUI.dll` anywhere out of the `bin` directory? – canton7 Aug 13 '19 at 12:02
  • Do you have a data driven test that is reading from an external file in your project? Triggering your tests in this way will run EVERY test in the DLL... is that what you expected? – JeffC Aug 13 '19 at 12:58
  • Yes, i have tried to move .dll from ``bin`` directory – IvanMikhalka Aug 14 '19 at 12:17

1 Answers1

0

Anyway, i have found alternative way to run tests. I was able to do it by running dotnet test --no-build in directory, where solution file ComplexUI.sln is placed. It still doesn't working with nunit3-console. Maybe, it's some issue with current version

IvanMikhalka
  • 184
  • 10