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))] |
|
public void LongDatePattern_Get_ReturnsExpected_HybridGlobalization(DateTimeFormatInfo format, string expected) |
|
{ |
|
Assert.Equal(expected, format.LongDatePattern); |
|
} |
Some of these tests could be used to verify correct functionality of Apple Hybrid-Globalization.
cc: @mkhamoyan