-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathInheritanceTest.cs
44 lines (35 loc) · 918 Bytes
/
InheritanceTest.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
using System;
using System.Linq;
#if NETFX_CORE
using Microsoft.VisualStudio.TestPlatform.UnitTestFramework;
using SetUp = Microsoft.VisualStudio.TestPlatform.UnitTestFramework.TestInitializeAttribute;
using TestFixture = Microsoft.VisualStudio.TestPlatform.UnitTestFramework.TestClassAttribute;
using Test = Microsoft.VisualStudio.TestPlatform.UnitTestFramework.TestMethodAttribute;
#else
using NUnit.Framework;
#endif
namespace SQLite.Tests
{
[TestFixture]
public class InheritanceTest
{
class Base
{
[PrimaryKey]
public int Id { get; set; }
public string BaseProp { get; set; }
}
class Derived : Base
{
public string DerivedProp { get; set; }
}
[Test]
public void InheritanceWorks ()
{
var db = new TestDb ();
var mapping = db.GetMapping<Derived> ();
Assert.AreEqual (3, mapping.Columns.Length);
Assert.AreEqual ("Id", mapping.PK.Name);
}
}
}