-
Notifications
You must be signed in to change notification settings - Fork 19.9k
/
Copy pathMyAtoiTest.java
43 lines (34 loc) · 1.43 KB
/
MyAtoiTest.java
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
package com.thealgorithms.strings;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.CsvSource;
public class MyAtoiTest {
@ParameterizedTest
@CsvSource({"'42', 42", "' -42', -42", "'4193 with words', 4193", "'words and 987', 0", "'-91283472332', -2147483648", "'21474836460', 2147483647", "' +123', 123", "'', 0", "' ', 0", "'-2147483648', -2147483648", "'+2147483647', 2147483647", "' -0012a42', -12",
"'9223372036854775808', 2147483647", "'-9223372036854775809', -2147483648", "'3.14159', 3", "' -0012', -12", "' 0000000000012345678', 12345678", "' -0000000000012345678', -12345678", "' +0000000000012345678', 12345678", "'0', 0", "'+0', 0", "'-0', 0"})
void
testMyAtoi(String input, int expected) {
assertEquals(expected, MyAtoi.myAtoi(input));
}
@Test
void testNullInput() {
assertEquals(0, MyAtoi.myAtoi(null));
}
@Test
void testSinglePlus() {
assertEquals(0, MyAtoi.myAtoi("+"));
}
@Test
void testSingleMinus() {
assertEquals(0, MyAtoi.myAtoi("-"));
}
@Test
void testIntegerMinBoundary() {
assertEquals(Integer.MIN_VALUE, MyAtoi.myAtoi("-2147483648"));
}
@Test
void testIntegerMaxBoundary() {
assertEquals(Integer.MAX_VALUE, MyAtoi.myAtoi("2147483647"));
}
}