-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_0003_Longest_substring_without_repeating_characters_Test.cs
More file actions
81 lines (65 loc) · 2.06 KB
/
_0003_Longest_substring_without_repeating_characters_Test.cs
File metadata and controls
81 lines (65 loc) · 2.06 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
78
79
80
81
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Solution._0003.Longest_substring_without_repeating_characters;
namespace _0003.Longest_substring_without_repeating_characters.Tests
{
[TestClass()]
public class _0003_Longest_substring_without_repeating_characters_Test
{
_0003_Longest_substring_without_repeating_characters solution = new _0003_Longest_substring_without_repeating_characters();
[TestMethod()]
public void LengthOfLongestSubstring_Test1()
{
// Arrange
string s = "abcabcbb";
var expected = 3;
// Act
var actual = solution.LengthOfLongestSubstring(s);
// Assert
Assert.AreEqual(expected, actual);
}
[TestMethod()]
public void LengthOfLongestSubstring_Test2()
{
// Arrange
string s = "bbbbb";
var expected = 1;
// Act
var actual = solution.LengthOfLongestSubstring(s);
// Assert
Assert.AreEqual(expected, actual);
}
[TestMethod()]
public void LengthOfLongestSubstring_Test3()
{
// Arrange
string s = "pwwkew";
var expected = 3;
// Act
var actual = solution.LengthOfLongestSubstring(s);
// Assert
Assert.AreEqual(expected, actual);
}
[TestMethod()]
public void LengthOfLongestSubstring_Test4()
{
// Arrange
string s = "au";
var expected = 2;
// Act
var actual = solution.LengthOfLongestSubstring(s);
// Assert
Assert.AreEqual(expected, actual);
}
[TestMethod()]
public void LengthOfLongestSubstring_Test5()
{
// Arrange
string s = "dvdf";
var expected = 3;
// Act
var actual = solution.LengthOfLongestSubstring(s);
// Assert
Assert.AreEqual(expected, actual);
}
}
}