Mercurial > pub > bltoolkit
view HowTo/Mapping/ObjectToObject.cs @ 8:a34cfdde80d6
removed strong signing
added FrameworkPathOverride for linux builds
author | cin |
---|---|
date | Wed, 29 Nov 2017 12:43:52 +0300 |
parents | f990fcb411a9 |
children |
line wrap: on
line source
using System; using NUnit.Framework; using BLToolkit.Mapping; namespace HowTo.Mapping { [TestFixture] public class ObjectToObject { public class SourceObject { public bool Value1 = true; public string Value2 = "10"; public string StrValue = "test"; } public class DestObject { [MapField("Value1")] public bool BoolValue; [MapField("Value2")] public int IntValue; // If the source and destination field/property names are equal, // there is no need for using the MapField attribute. // public string StrValue; } [Test] public void Test1() { SourceObject source = new SourceObject(); DestObject dest = Map./*[a]*/ObjectToObject/*[/a]*/<DestObject>(source); Assert.AreEqual(true, dest.BoolValue); Assert.AreEqual(10, dest.IntValue); Assert.AreEqual("test", dest.StrValue); } } }