I have come across some unit tests written by another developer that regularly use an overloaded version of Assert.AreEqual
like so:
Assert.AreEqual(stringparamX, stringParamY, true, CultureInfo.InvariantCulture);
stringParamX
is set within the unit test and stringparamY
will be the result from the system under test.
It is possible hat this code may be ported to other countries and these tests may be executed. However, on having a look at the MSDN docs for Culture, I can't help thinking that passing in CultureInfo.InvariantCulture
is adding some unnecessary complexity here. I'm not sure what kind of impact removing it would have on the tests if executed in other cultures.
In the context of unit testing in my situation, why should I (or not) write asserts like this?
There is no reason to use that overload if you are specifying the culture as
InvariantCulture
, because that is the default.From the documentation here:
Note that there ARE some cases where it would make a difference if you weren't using the
InvariantCulture
, the most notorious being "The Turkish I problem".The following code illustrates the issue:
However, note that you will not be affected by that because you are using the invariant culture.