-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathAssertionsTests.cs
More file actions
78 lines (63 loc) · 2.13 KB
/
Copy pathAssertionsTests.cs
File metadata and controls
78 lines (63 loc) · 2.13 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
//-----------------------------------------------------------------------
// <copyright file="AssertionsTests.cs" company="Akka.NET Project">
// Copyright (C) 2013-2022 Akka.NET project <https://github.com/akkadotnet/akka.net>
// </copyright>
//-----------------------------------------------------------------------
namespace Akka.TestKit.MsTest.Tests
{
[TestClass]
public class AssertionsTests
{
private MsTestAssertions? _assertions;
[TestInitialize]
public void SetUp()
{
_assertions = new MsTestAssertions();
}
[TestMethod]
public void Fail_should_throw()
{
Assert.ThrowsExactly<AssertFailedException>(() => _assertions!.Fail());
}
[TestMethod]
public void AssertTrue_should_throw_on_false()
{
Assert.ThrowsExactly<AssertFailedException>(() => _assertions!.AssertTrue(false));
}
[TestMethod]
public void AssertTrue_should_succeed_on_true()
{
_assertions!.AssertTrue(true);
}
[TestMethod]
public void AssertFalse_should_throw_on_true()
{
Assert.ThrowsExactly<AssertFailedException>(() => _assertions!.AssertFalse(true));
}
[TestMethod]
public void AssertFalse_should_succeed_on_false()
{
_assertions!.AssertFalse(false);
}
[TestMethod]
public void AssertEqual_should_throw_on_not_equal()
{
Assert.ThrowsExactly<AssertFailedException>(() => _assertions!.AssertEqual(42, 4711));
}
[TestMethod]
public void AssertEqual_should_succeed_on_equal()
{
_assertions!.AssertEqual(42, 42);
}
[TestMethod]
public void AssertEqualWithComparer_should_throw_on_not_equal()
{
Assert.ThrowsExactly<AssertFailedException>(() => _assertions!.AssertEqual(42, 42, (x, y) => false));
}
[TestMethod]
public void AssertEqualWithComparer_should_succeed_on_equal()
{
_assertions!.AssertEqual(42, 4711,(x,y)=>true);
}
}
}