forked from ThatRendle/Simple.Data
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDynamicEnumerableTest.cs
More file actions
54 lines (49 loc) · 1.65 KB
/
DynamicEnumerableTest.cs
File metadata and controls
54 lines (49 loc) · 1.65 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NUnit.Framework;
namespace Simple.Data.UnitTest
{
[TestFixture]
public class DynamicEnumerableTest
{
[Test]
public void TestCast()
{
dynamic test = new SimpleResultSet(new[] {"Hello", "World"});
IEnumerable<string> strings = test.Cast<string>();
Assert.AreEqual(2, strings.Count());
}
// [Test]
// public void TestOfType()
// {
// dynamic test = new SimpleResultSet(new dynamic[] { "Hello", 1 });
// IEnumerable<int> ints = test.OfType<int>();
// Assert.AreEqual(1, ints.Count());
// Assert.AreEqual(1, ints.Single());
// }
[Test]
public void TestCastWithClass()
{
var dict = new Dictionary<string, object>(HomogenizedEqualityComparer.DefaultInstance) {{"Name", "Bob"}};
dynamic test = new SimpleResultSet(new[] {new SimpleRecord(dict)});
IEnumerable<Foo> foos = test.Cast<Foo>();
Assert.AreEqual(1, foos.Count());
}
[Test]
public void TestCastWithForeach()
{
var dict = new Dictionary<string, object>(HomogenizedEqualityComparer.DefaultInstance) { { "Name", "Bob" } };
dynamic test = new SimpleResultSet(new[] { new SimpleRecord(dict) });
foreach (Foo foo in test)
{
Assert.AreEqual("Bob", foo.Name);
}
}
class Foo
{
public string Name { get; set; }
}
}
}