-
```
Parsing test runner result file 'TestResult.xml' ...
The html report will be output to the folder '..\testresult\'.
Unhandled Exception: System.Reflection.TargetInvocationException: Exception…
-
I have the following test
[Test]
[TestCase(ThisEnum.Option1, "ABC")]
[TestCase(ThisEnum.Option2, "DEF")]
[TestCase(ThisEnum.Option3, "GHI")]
public void TestSomething(ThisEnum thisEnum, string …
-
I have a very old project that still runs NUnit 2. I'm trying to update it to NUnit 4. I downloaded the NUnit.Console-3.17.0 zip and added the nunit-extension-nunit-v2-driver.3.9.0 dll's manually. The…
Clumi updated
2 weeks ago
-
When I run this command in Mac via Terminal
`mono ../../../.nuget/packages/NUnit.ConsoleRunner/3.18.3/tools/nunit3-console.exe --labels=Before --out=TestResult.txt "--result=TestResult.xml;format=n…
-
I have the following project and test
``` xml
net8.0
```
``` csharp
[Test]
public void Test1()
{
Assembly.Load("Micros…
-
I am getting three output xml files as result in nunit 3 by running the command nunit3-console "my dlls" --result: "my ouput path".
I need to combine the three results of the files into one xml file.…
-
**Describe the project you are working on:**
A 3D spaceship/spacebase building game (think Space Engineers)
**Describe the problem or limitation you are having in your project:**
The more cod…
dsge updated
2 months ago
-
Hi,
I have tests assemblies
I'm running the following command:
> "C:\Program Files (x86)\NUnit.org\nunit-console\nunit3-console.exe" --shadowcopy [myTestsDlls] --timeout=4000
I have a test t…
-
With NUnit3TestAdapter 4.1.0 and 4.0.0, the NUnitFixtureOrdering does not work.
========== Starting test run ==========
NUnit Adapter 4.1.0.0: Test execution started
Running selected tests in C:\…
-
In my NUnit-Test I register some services using Autofac library:
```csharp
[Test]
public void Test() {
var builder = new ContainerBuilder();
builder.RegisterType(typeof(FakeServiceNoCon…