Using NUnit I want to run all the tests in a specific project against multiple cultures.
The project considers parsing data that should be culturally neutral; to ensure this, I would like to run each test against several cultures.
I have a current solution
public abstract class FooTests { } [TestFixture, SetCulture ("en-GB")] public class FooTestsEN : FooTests {} [TestFixture, SetCulture ("pl-PL")] public class FooTestsPL : FooTests {}
Ideally, I don't need to create these classes and instead use something like:
[assembly: SetCulture ("en-GB")] [assembly: SetCulture ("pl-PL")]
source share