-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_0002_Add_two_numbers_Test.cs
More file actions
58 lines (48 loc) · 1.75 KB
/
_0002_Add_two_numbers_Test.cs
File metadata and controls
58 lines (48 loc) · 1.75 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
using Common;
using FluentAssertions;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Solution._0002.Add_two_numbers;
namespace _0002.Add_two_numbers.Tests
{
[TestClass()]
public class _0002_Add_two_numbers_Test
{
_0002_Add_two_numbers solution = new _0002_Add_two_numbers();
[TestMethod()]
public void AddTwoNumbers_Test1()
{
// Arrange
ListNode l1 = new ListNode().AddNode(new int[] { 2, 4, 3 });
ListNode l2 = new ListNode().AddNode(new int[] { 5, 6, 4 });
ListNode expected = new ListNode().AddNode(new int[] { 7, 0, 8 });
// Act
var actual = solution.AddTwoNumbers(l1, l2);
// Assert
actual.Should().BeEquivalentTo(expected);
}
[TestMethod()]
public void AddTwoNumbers_Test2()
{
// Arrange
ListNode l1 = new ListNode().AddNode(new int[] { 0 });
ListNode l2 = new ListNode().AddNode(new int[] { 0 });
ListNode expected = new ListNode().AddNode(new int[] { 0 });
// Act
var actual = solution.AddTwoNumbers(l1, l2);
// Assert
actual.Should().BeEquivalentTo(expected);
}
[TestMethod()]
public void AddTwoNumbers_Test3()
{
// Arrange
ListNode l1 = new ListNode().AddNode(new int[] { 9, 9, 9, 9, 9, 9, 9 });
ListNode l2 = new ListNode().AddNode(new int[] { 9, 9, 9, 9 });
ListNode expected = new ListNode().AddNode(new int[] { 8, 9, 9, 9, 0, 0, 0, 1 });
// Act
var actual = solution.AddTwoNumbers(l1, l2);
// Assert
actual.Should().BeEquivalentTo(expected);
}
}
}