How to specify concrente Localization Culture for tests project in C# in VS2008? I\'m building Asp .Net MVC app that has nonstandard culture specified in web.config but how to s
For nUnit 3, you can use the attribute [SetUICulture("en-us")]. This will force the culture for this single test.
[SetUICulture("en-us")]