15 lines
278 B
Python
15 lines
278 B
Python
import pytest
|
|
from solution import Solution
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"s,expected",
|
|
[
|
|
("abcabcbb", 3),
|
|
("bbbbb", 1),
|
|
("pwwkew", 3),
|
|
],
|
|
)
|
|
def test_longest_substring(s, expected):
|
|
assert Solution().lengthOfLongestSubstring(s) == expected
|