comparison UnitTests/CS/Mapping/ObjectMapperAttributeTest.cs @ 0:f990fcb411a9

Копия текущей версии из github
author cin
date Thu, 27 Mar 2014 21:46:09 +0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f990fcb411a9
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 }