Test Configuration with .NET Core and NUnit 3
Exploring how to set Nunit test configuration from .runsettings files and the local file system in >NET core test projects
Exploring how to set Nunit test configuration from .runsettings files and the local file system in >NET core test projects
After last time I can feel that I am getting close to being able to inject a configuration for my tests. Next I want to be able to use a configuration file to set the particular configuration that I want to use for any particular test run. So how do we go about doing that in .NET Core? The next steps are: Refactor calls with many arguments to take a standard WebDriver configuration object. Allow different ways to collect and…