Ai
1 Star 0 Fork 0

雪碧/CsvHelper-For-Unity

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CsvWriterConstructorTests.cs 859 Bytes
一键复制 编辑 原始数据 按行查看 历史
Josh Close 提交于 2022-04-28 00:58 +08:00 . Updated license headers.
// Copyright 2009-2022 Josh Close
// This file is a part of CsvHelper and is dual licensed under MS-PL and Apache 2.0.
// See LICENSE.txt for details or visit http://www.opensource.org/licenses/ms-pl.html for MS-PL and http://opensource.org/licenses/Apache-2.0 for Apache 2.0.
// https://github.com/JoshClose/CsvHelper
using System.Globalization;
using System.IO;
using Xunit;
namespace CsvHelper.Tests
{
public class CsvWriterConstructorTests
{
[Fact]
public void EnsureInternalsAreSetupWhenPassingWriterAndConfigTest()
{
using( var stream = new MemoryStream() )
using( var writer = new StreamWriter( stream ) )
{
var config = new CsvHelper.Configuration.CsvConfiguration(CultureInfo.InvariantCulture);
using( var csv = new CsvWriter( writer, config ) )
{
Assert.Same( config, csv.Configuration );
}
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/SpritePlus/CsvHelper-For-Unity.git
git@gitee.com:SpritePlus/CsvHelper-For-Unity.git
SpritePlus
CsvHelper-For-Unity
CsvHelper-For-Unity
master

搜索帮助