Mercurial > pub > bltoolkit
annotate UnitTests/CS/Mapping/ObjectMapperAttributeTest.cs @ 9:1e85f66cf767 default tip
update bltoolkit
author | nickolay |
---|---|
date | Thu, 05 Apr 2018 20:53:26 +0300 |
parents | f990fcb411a9 |
children |
rev | line source |
---|---|
0 | 1 using System; |
2 | |
3 using NUnit.Framework; | |
4 | |
5 using BLToolkit.Mapping; | |
6 | |
7 namespace Mapping | |
8 { | |
9 [TestFixture, Category("Mapping")] | |
10 public class ObjectMapperAttributeTest | |
11 { | |
12 class TestMapper : ObjectMapper | |
13 { | |
14 } | |
15 | |
16 [ObjectMapper(typeof(TestMapper))] | |
17 public class TestObject | |
18 { | |
19 } | |
20 | |
21 [Test] | |
22 public void Test() | |
23 { | |
24 ObjectMapper om = Map.GetObjectMapper(typeof(TestObject)); | |
25 | |
26 Assert.AreEqual(typeof(TestMapper), om.GetType()); | |
27 } | |
28 } | |
29 } |