-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathRandomizerTest.cs
94 lines (76 loc) · 2.65 KB
/
RandomizerTest.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Tynamix.ObjectFiller.Test.TestPoco.Library;
using Tynamix.ObjectFiller.Test.TestPoco.Person;
namespace Tynamix.ObjectFiller.Test
{
[TestClass]
public class RandomizerTest
{
[TestMethod]
public void GetRandomInt()
{
var number = Randomizer<int>.Create(new IntRange(1, 2));
Assert.IsTrue(number == 1 || number == 2);
}
[TestMethod]
public void FillAllAddressProperties()
{
var a = Randomizer<Address>.Create();
Assert.IsNotNull(a.City);
Assert.IsNotNull(a.Country);
Assert.AreNotEqual(0, a.HouseNumber);
Assert.IsNotNull(a.PostalCode);
Assert.IsNotNull(a.Street);
}
[TestMethod]
public void TryingToCreateAnObjectWithAnInterfaceShallFailAndHaveAnInnerexception()
{
try
{
Randomizer<Library>.Create();
}
catch (InvalidOperationException ex)
{
Assert.IsNotNull(ex.InnerException);
return;
}
// Should not reach this!
Assert.IsFalse(true);
}
[TestMethod]
public void RandomizerCreatesAListOfRandomItemsIfNeeded()
{
int amount = 5;
IEnumerable<int> result = Randomizer<int>.Create(amount);
Assert.AreEqual(amount, result.Count());
}
[TestMethod]
public void RandomizerCreatesAListOfRandomItemsWithAPlugin()
{
int amount = 5;
IEnumerable<int> result = Randomizer<int>.Create(new IntRange(1,1), amount);
Assert.AreEqual(amount, result.Count());
Assert.IsTrue(result.Count(x => x == 1) == amount);
}
[TestMethod]
public void RandomizerCreatesAListOfItemBasedOnAFactory()
{
int amount = 5;
IEnumerable<int> result = Randomizer<int>.Create(amount, () => 1);
Assert.AreEqual(amount, result.Count());
Assert.IsTrue(result.Count(x => x == 1) == amount);
}
[TestMethod]
public void RandomizerCreatesAListOfItemBasedOnASetup()
{
int amount = 5;
var setup = FillerSetup.Create<Address>().OnType<int>().Use(1).Result;
IEnumerable<Address> result = Randomizer<Address>.Create(setup, amount);
Assert.AreEqual(amount, result.Count());
Assert.IsTrue(result.Count(x => x.HouseNumber == 1) == amount);
}
}
}