Exemple #1
0
        public void Contains_Test(string thisCultureStr, string thatCultureStr, bool expected)
        {
            var thisCulture = new CultureInfo(thisCultureStr);
            var thatCulture = new CultureInfo(thatCultureStr);

            Assert.Equal(expected, thisCulture.Contains(thatCulture));
        }