As NCrunch runs tests other tests that use dates are being affected by the india culture set in the before of other tests.
I have not ran this in TFS or R# yet.
before initialize = () =>
{
Thread.CurrentThread.CurrentCulture = new CultureInfo("te-IN");
};
after clean_up = () =>
{
Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture;
};