-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathRealNamePluginTest.cs
66 lines (54 loc) · 2.15 KB
/
RealNamePluginTest.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Tynamix.ObjectFiller.Test
{
[TestClass]
public class RealNamePluginTest
{
[TestMethod]
public void TestRealNameFirstNameOnly()
{
Filler<LibraryFillingTest.Person> filler = new Filler<LibraryFillingTest.Person>();
filler.Setup()
.OnProperty(x => x.Name).Use(new RealNames(NameStyle.FirstName));
LibraryFillingTest.Person p = filler.Create();
Assert.IsNotNull(p);
Assert.IsNotNull(p.Name);
Assert.IsFalse(p.Name.Contains(" "));
}
[TestMethod]
public void TestRealNameLastNameOnly()
{
Filler<LibraryFillingTest.Person> filler = new Filler<LibraryFillingTest.Person>();
filler.Setup()
.OnProperty(x => x.Name).Use(new RealNames(NameStyle.LastName));
LibraryFillingTest.Person p = filler.Create();
Assert.IsNotNull(p);
Assert.IsNotNull(p.Name);
Assert.IsFalse(p.Name.Contains(" "));
}
[TestMethod]
public void TestRealNameFirstNameLastName()
{
Filler<LibraryFillingTest.Person> filler = new Filler<LibraryFillingTest.Person>();
filler.Setup()
.OnProperty(x => x.Name).Use(new RealNames(NameStyle.FirstNameLastName));
LibraryFillingTest.Person p = filler.Create();
Assert.IsNotNull(p);
Assert.IsNotNull(p.Name);
Assert.IsTrue(p.Name.Contains(" "));
Assert.AreEqual(2, p.Name.Split(' ').Length);
}
[TestMethod]
public void TestRealNameLastNameFirstName()
{
Filler<LibraryFillingTest.Person> filler = new Filler<LibraryFillingTest.Person>();
filler.Setup()
.OnProperty(x => x.Name).Use(new RealNames(NameStyle.LastNameFirstName));
LibraryFillingTest.Person p = filler.Create();
Assert.IsNotNull(p);
Assert.IsNotNull(p.Name);
Assert.IsTrue(p.Name.Contains(" "));
Assert.AreEqual(2, p.Name.Split(' ').Length);
}
}
}