The tests that rely in parsing of dates and/or floating-point numbers will fail when building DoomLauncher on a computer running a non-English Windows locale.
One such test method is, for example, TestSyncUpdate(), which contains a call to DateTime.Parse(string).
In order to fix the issues, the DateTime.Parse(string, IFormatProvider) should be called instead.
The tests that rely in parsing of dates and/or floating-point numbers will fail when building DoomLauncher on a computer running a non-English Windows locale.
One such test method is, for example, TestSyncUpdate(), which contains a call to DateTime.Parse(string). In order to fix the issues, the DateTime.Parse(string, IFormatProvider) should be called instead.