Ai
1 Star 0 Fork 0

雪碧/CsvHelper-For-Unity

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ReferenceMappingIndexTests.cs 1.44 KB
一键复制 编辑 原始数据 按行查看 历史
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.Collections.Generic;
using System.Globalization;
using System.Linq;
using CsvHelper.Configuration;
using CsvHelper.Tests.Mocks;
using Xunit;
namespace CsvHelper.Tests
{
public class ReferenceMappingIndexTests
{
[Fact]
public void MapByIndexTest()
{
var config = new CsvConfiguration(CultureInfo.InvariantCulture)
{
HasHeaderRecord = false,
};
var parserMock = new ParserMock(config)
{
new[] { "0", "1" },
new[] { "2", "3" },
};
var csv = new CsvReader(parserMock);
csv.Context.RegisterClassMap<AMap>();
var records = csv.GetRecords<A>().ToList();
Assert.Equal(1, records[0].Id);
Assert.Equal(0, records[0].B.Id);
Assert.Equal(3, records[1].Id);
Assert.Equal(2, records[1].B.Id);
}
private class A
{
public int Id { get; set; }
public B B { get; set; }
}
private class B
{
public int Id { get; set; }
}
private sealed class AMap : ClassMap<A>
{
public AMap()
{
Map(m => m.Id).Index(1);
References<BMap>(m => m.B);
}
}
private sealed class BMap : ClassMap<B>
{
public BMap()
{
Map(m => m.Id).Index(0);
}
}
}
}
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

搜索帮助