We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7b3c4d commit a92f92aCopy full SHA for a92f92a
tests/IniFile.Tests/IniFileTests.cs
@@ -281,15 +281,15 @@ public void Can_read_multiline_property_value(string iniContent)
281
ini["Section"]["Multiline"].ToString().ShouldBe(expectedValue);
282
}
283
284
- [Fact]
285
- public void Can_load_from_file()
286
- {
287
- var ini = new Ini(@"D:\Temp\Data.ini");
288
- string ip = ini["tcp"]?["ip"];
289
- string missing = ini["tcp2"]?["missing"];
+ //[Fact]
+ //public void Can_load_from_file()
+ //{
+ // var ini = new Ini(@"D:\Temp\Data.ini");
+ // string ip = ini["tcp"]?["ip"];
+ // string missing = ini["tcp2"]?["missing"];
290
291
- ip.ShouldNotBeNull();
292
- missing.ShouldBeNull();
293
- }
+ // ip.ShouldNotBeNull();
+ // missing.ShouldBeNull();
+ //}
294
295
0 commit comments