forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_1108Test.java
More file actions
30 lines (24 loc) · 830 Bytes
/
_1108Test.java
File metadata and controls
30 lines (24 loc) · 830 Bytes
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
package com.fishercoder;
import com.fishercoder.solutions._1108;
import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class _1108Test {
private static _1108.Solution1 solution1;
private static _1108.Solution2 solution2;
@BeforeClass
public static void setup() {
solution1 = new _1108.Solution1();
solution2 = new _1108.Solution2();
}
@Test
public void test1() {
assertEquals("1[.]1[.]1[.]1", solution1.defangIPaddr("1.1.1.1"));
assertEquals("1[.]1[.]1[.]1", solution2.defangIPaddr("1.1.1.1"));
}
@Test
public void test2() {
assertEquals("255[.]100[.]50[.]0", solution1.defangIPaddr("255.100.50.0"));
assertEquals("255[.]100[.]50[.]0", solution2.defangIPaddr("255.100.50.0"));
}
}