-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathDictionaryFillingTest.cs
51 lines (42 loc) · 1.63 KB
/
DictionaryFillingTest.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
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Tynamix.ObjectFiller.Test
{
[TestClass]
public class DictionaryFillingTest
{
public class EntityA
{
public string Name { get; set; }
public int ID { get; set; }
public IDictionary<string, string> InterfaceDictionary { get; set; }
public Dictionary<string, string> ConcreteDictionary { get; set; }
public NestedEntity NestedEntity { get; set; }
}
public class NestedEntity
{
public IDictionary<string, string> InterfaceDictionary { get; set; }
public Dictionary<string, string> ConcreteDictionary { get; set; }
}
[TestMethod]
public void TestDictionaryType()
{
Filler<EntityA> filler = new Filler<EntityA>();
var result = filler.Create();
Assert.IsNotNull(result.Name);
Assert.IsNotNull(result.ID);
Assert.IsNotNull(result.InterfaceDictionary);
Assert.IsTrue(result.InterfaceDictionary.Any());
Assert.IsNotNull(result.ConcreteDictionary);
Assert.IsTrue(result.ConcreteDictionary.Any());
Assert.IsNotNull(result.NestedEntity);
Assert.IsNotNull(result.NestedEntity.InterfaceDictionary);
Assert.IsTrue(result.NestedEntity.InterfaceDictionary.Any());
Assert.IsNotNull(result.NestedEntity.ConcreteDictionary);
Assert.IsTrue(result.NestedEntity.ConcreteDictionary.Any());
}
}
}