forked from ThatRendle/Simple.Data
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNameResolutionTest.cs
More file actions
62 lines (48 loc) · 1.87 KB
/
NameResolutionTest.cs
File metadata and controls
62 lines (48 loc) · 1.87 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Simple.Data.InMemoryTest
{
using NUnit.Framework;
[TestFixture]
class NameResolutionTest
{
[Test]
public void InsertAndFindByTableNameResolvesCorrectlyWithHomogenisedStringComparer()
{
var inMemoryAdapter = new InMemoryAdapter(new AdoCompatibleComparer());
Database.UseMockAdapter(inMemoryAdapter);
var db = Database.Open();
db.CUSTOMER.Insert(ID: 1, NAME: "ACME");
var actual = db.Customers.FindById(1);
Assert.IsNotNull(actual);
Assert.AreEqual("ACME", actual.Name);
}
[Test]
public void UpdateTableNameResolvesCorrectlyWithHomogenisedStringComparer()
{
var inMemoryAdapter = new InMemoryAdapter(new AdoCompatibleComparer());
Database.UseMockAdapter(inMemoryAdapter);
var db = Database.Open();
db.CUSTOMER.Insert(ID: 1, NAME: "ACME");
db.Customers.UpdateById(Id: 1, Name: "ACME Inc.");
var actual = db.Customers.FindById(1);
Assert.IsNotNull(actual);
Assert.AreEqual("ACME Inc.", actual.Name);
}
[Test]
public void DeleteTableNameResolvesCorrectlyWithHomogenisedStringComparer()
{
var inMemoryAdapter = new InMemoryAdapter(new AdoCompatibleComparer());
Database.UseMockAdapter(inMemoryAdapter);
var db = Database.Open();
db.CUSTOMER.Insert(ID: 1, NAME: "ACME");
var actual = db.Customers.FindById(1);
Assert.IsNotNull(actual);
db.Customers.DeleteById(1);
actual = db.Customers.FindById(1);
Assert.IsNull(actual);
}
}
}