There are a lot of tests in System.Globalization.Tests that are only enabled for Hybrid-Globalization on Browser. For example:
| [ConditionalTheory(typeof(PlatformDetection),nameof(PlatformDetection.IsHybridGlobalizationOnBrowser))] |
| [MemberData(nameof(LongDatePattern_Get_TestData_HybridGlobalization))] |
| publicvoidLongDatePattern_Get_ReturnsExpected_HybridGlobalization(DateTimeFormatInfoformat,stringexpected) |
| { |
| Assert.Equal(expected,format.LongDatePattern); |
| } |
Some of these tests could be used to verify correct functionality of Apple Hybrid-Globalization.
cc: @mkhamoyan
There are a lot of tests in
System.Globalization.Teststhat are only enabled for Hybrid-Globalization on Browser. For example:runtime/src/libraries/System.Runtime/tests/System.Globalization.Tests/DateTimeFormatInfo/DateTimeFormatInfoLongDatePattern.cs
Lines 219 to 224 in 71a7d88
Some of these tests could be used to verify correct functionality of Apple Hybrid-Globalization.
cc: @mkhamoyan