-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSolution014Test.java
More file actions
28 lines (22 loc) · 872 Bytes
/
Solution014Test.java
File metadata and controls
28 lines (22 loc) · 872 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
package com.portgas;
import org.junit.Test;
public class Solution014Test {
@Test
public void test() {
int result1 = new Solution014().integerBreak(1);
int result2 = new Solution014().integerBreak(2);
int result3 = new Solution014().integerBreak(3);
int result4 = new Solution014().integerBreak(4);
int result5 = new Solution014().integerBreak(5);
int result6 = new Solution014().integerBreak(6);
int result7 = new Solution014().integerBreak(7);
System.out.println("result1 = " + result1
+ "\n" + "result2 = " + result2
+ "\n" + "result3 = " + result3
+ "\n" + "result4 = " + result4
+ "\n" + "result5 = " + result5
+ "\n" + "result6 = " + result6
+ "\n" + "result7 = " + result7
);
}
}