-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathCollectionizerTest.cs
86 lines (68 loc) · 3.03 KB
/
CollectionizerTest.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
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Tynamix.ObjectFiller.Test
{
public class CollectionizerPoco
{
public IEnumerable<string> MnemonicStrings { get; set; }
public List<int> IntRange { get; set; }
#if !NET6
public ArrayList ArrayList { get; set; }
#endif
public string[] StringArray { get; set; }
}
[TestClass]
public class CollectionizerTest
{
#if !NET6
[TestMethod]
public void TestCityNames()
{
var filler = new Filler<CollectionizerPoco>();
filler.Setup().OnProperty(x => x.ArrayList).Use(new Collectionizer<string, MnemonicString>(new MnemonicString(1, 20, 25), 3, 10));
var arrayList = filler.Create();
Assert.IsTrue(arrayList.ArrayList.Count >= 3 && arrayList.ArrayList.Count <= 10);
Assert.IsTrue(arrayList.ArrayList.ToArray().Cast<string>().All(x => x.Length >= 20 && x.Length <= 25));
}
#endif
[TestMethod]
public void TestMnemonicStringPlugin()
{
var filler = new Filler<CollectionizerPoco>();
filler.Setup()
.OnProperty(x => x.MnemonicStrings).Use(new Collectionizer<string, MnemonicString>(new MnemonicString(1, 20, 25), 3, 10))
.OnProperty(x => x.StringArray).Use(new Collectionizer<string, MnemonicString>(new MnemonicString(1, 20, 25), 3, 10));
var collection = filler.Create();
Assert.IsTrue(collection.MnemonicStrings.Count() >= 3 && collection.MnemonicStrings.Count() <= 10);
Assert.IsTrue(collection.MnemonicStrings.All(x => x.Length >= 20 && x.Length <= 25));
Assert.IsTrue(collection.StringArray.Count() >= 3 && collection.MnemonicStrings.Count() <= 10);
Assert.IsTrue(collection.StringArray.All(x => x.Length >= 20 && x.Length <= 25));
}
[TestMethod]
public void TestMnemonicStringPluginTest()
{
var filler = new Filler<CollectionizerPoco>();
filler.Setup()
.OnProperty(x => x.MnemonicStrings).Use<Collectionizer<string, MnemonicString>>();
var collection = filler.Create();
Assert.IsNotNull(collection);
Assert.IsNotNull(collection.MnemonicStrings);
Assert.IsTrue(collection.MnemonicStrings.Any());
collection.MnemonicStrings.ToList().ForEach(s => Debug.WriteLine(s));
}
[TestMethod]
public void TestIntRangePlugin()
{
var filler = new Filler<CollectionizerPoco>();
filler.Setup()
.OnProperty(x => x.IntRange)
.Use(new Collectionizer<int, IntRange>(new IntRange(10, 15), 3, 10));
var collection = filler.Create();
Assert.IsTrue(collection.IntRange.Count >= 3 && collection.IntRange.Count() <= 10);
Assert.IsTrue(collection.IntRange.All(x => x >= 10 && x <= 15));
}
}
}