-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_0566_Reshape_the_matrix_Test.cs
More file actions
58 lines (49 loc) · 1.4 KB
/
_0566_Reshape_the_matrix_Test.cs
File metadata and controls
58 lines (49 loc) · 1.4 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 FluentAssertions;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Solution._0566.Reshape_the_matrix;
namespace _0566.Reshape_the_matrix.Tests
{
[TestClass()]
public class _0566_Reshape_the_matrix_Test
{
_0566_Reshape_the_matrix solution = new _0566_Reshape_the_matrix();
[TestMethod()]
public void MatrixReshape_Test1()
{
// Arrange
int[][] nums = new int[][]
{
new int[]{ 1, 2 },
new int[]{ 3, 4 },
};
int r = 1;
int c = 4;
var expected = new int[][] { new int[] { 1, 2, 3, 4 } };
// Act
var actual = solution.MatrixReshape(nums, r, c);
// Assert
actual.Should().BeEquivalentTo(expected);
}
[TestMethod()]
public void MatrixReshape_Test2()
{
// Arrange
int[][] nums = new int[][]
{
new int[]{ 1, 2 },
new int[]{ 3, 4 },
};
int r = 2;
int c = 4;
var expected = new int[][]
{
new int[]{ 1, 2 },
new int[]{ 3, 4 },
};
// Act
var actual = solution.MatrixReshape(nums, r, c);
// Assert
actual.Should().BeEquivalentTo(expected);
}
}
}