NUnitLite 3.12.0 (.NET Standard 2.0)
I have some code which is loading configuration in SetUpFixture class. I have noticed that this code is not being triggered when tests are executed using --testlist parameter.
Steps to reproduce:
1] Create a SetUpFixture which does not belong to any namespace (will be always triggered)
using System;
using NUnit.Framework;
[SetUpFixture]
public class SetUpFixture
{
public SetUpFixture()
{
Console.WriteLine("Hello from SetUpFixture.");
}
}
2]Create a simple test
using System;
using NUnit.Framework;
namespace TestAutomation.Dashboard.Tests.Features
{
public class DummyTest
{
[Test]
public void TestSetUpFixture()
{
Console.WriteLine("Hello from the Test.");
}
}
}
- Execute using where expression:

- Executing using --testlist

As visible from the output above, when using --testlist there is no log message from the SetUpFixture.
NUnitLite 3.12.0 (.NET Standard 2.0)
I have some code which is loading configuration in SetUpFixture class. I have noticed that this code is not being triggered when tests are executed using --testlist parameter.
Steps to reproduce:
1] Create a SetUpFixture which does not belong to any namespace (will be always triggered)
2]Create a simple test
As visible from the output above, when using --testlist there is no log message from the SetUpFixture.