We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23be84e commit 5fa1f18Copy full SHA for 5fa1f18
Extensions/Csv/Cosmos.DataTransfer.CsvExtension.UnitTests/CsvWriterSettingsTests.cs
@@ -49,6 +49,11 @@ public void TestCurrentCulture(string culture) {
49
50
[TestMethod]
51
public void TestCurrentCultureByName() {
52
+ if (string.IsNullOrEmpty(CultureInfo.CurrentCulture.Name))
53
+ {
54
+ Assert.Inconclusive("Current culture name in executing environment is empty.");
55
+ }
56
+
57
var settings = new CsvWriterSettings() {
58
Culture = CultureInfo.CurrentCulture.Name
59
};
0 commit comments