diff options
Diffstat (limited to 'ThirdParty/CsvHelper-master/tests/CsvHelper.Tests/Mappings/Attribute/NewLineTests.cs')
-rw-r--r-- | ThirdParty/CsvHelper-master/tests/CsvHelper.Tests/Mappings/Attribute/NewLineTests.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ThirdParty/CsvHelper-master/tests/CsvHelper.Tests/Mappings/Attribute/NewLineTests.cs b/ThirdParty/CsvHelper-master/tests/CsvHelper.Tests/Mappings/Attribute/NewLineTests.cs new file mode 100644 index 0000000..5d9ba80 --- /dev/null +++ b/ThirdParty/CsvHelper-master/tests/CsvHelper.Tests/Mappings/Attribute/NewLineTests.cs @@ -0,0 +1,20 @@ +using CsvHelper.Configuration; +using CsvHelper.Configuration.Attributes; +using System.Globalization; +using Xunit; + +namespace CsvHelper.Tests.Mappings.Attribute +{ + public class NewLineTests + { + [Fact] + public void ConstructorAttributeTest() + { + var config = new CsvConfiguration(CultureInfo.InvariantCulture, typeof(Foo)); + Assert.Equal("a", config.NewLine); + } + + [NewLine("a")] + private class Foo { } + } +} |