-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_0018_4Sum_Test.cs
More file actions
51 lines (44 loc) · 1.29 KB
/
_0018_4Sum_Test.cs
File metadata and controls
51 lines (44 loc) · 1.29 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
using FluentAssertions;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Solution._0018._4Sum;
using System.Collections.Generic;
namespace _0018._4Sum.Tests
{
[TestClass()]
public class _0018_4Sum_Test
{
_0018_4Sum solution = new _0018_4Sum();
[TestMethod()]
public void FourSum_Test1()
{
// Arrange
int[] nums = { 1, 0, -1, 0, -2, 2 };
int target = 0;
IList<IList<int>> expected = new List<IList<int>>()
{
new List<int>(){ -2, -1, 1, 2 },
new List<int>(){ -2, 0, 0, 2 },
new List<int>(){ -1, 0, 0, 1 }
};
// Act
var actual = solution.FourSum(nums, target);
// Assert
actual.Should().BeEquivalentTo(expected);
}
[TestMethod()]
public void FourSum_Test2()
{
// Arrange
int[] nums = { 2, 2, 2, 2, 2 };
int target = 8;
IList<IList<int>> expected = new List<IList<int>>()
{
new List<int>(){ 2, 2, 2, 2 }
};
// Act
var actual = solution.FourSum(nums, target);
// Assert
actual.Should().BeEquivalentTo(expected);
}
}
}