-
Notifications
You must be signed in to change notification settings - Fork 19.7k
/
Copy pathLongDivisionTest.java
58 lines (48 loc) · 1.93 KB
/
LongDivisionTest.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package com.thealgorithms.maths;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
public class LongDivisionTest {
// Requirement: Dividend (positive) is greater than divisor (positive), returns correct integer
// after division
@Test
void testOne() {
assertEquals(3, LongDivision.divide(10, 3));
}
// Requirement: Dividend (positive) is greater than divisor (negative), returns correct integer
// after division
@Test
void testTwo() {
assertEquals(-2, LongDivision.divide(7, -3));
}
// Requirement: Dividend (positive) is greater than divisor (negative), returns correct integer
// after division Basically the same as in the first test
@Test
void testThree() {
assertEquals(10, LongDivision.divide(105, 10));
}
// Requirement: Dividend (negative), divisor (positive), returns correct integer after division
// Tests the case where the dividend is less than 0.
@Test
void testNegativeDividend() {
assertEquals(-1, LongDivision.divide(-5, 3));
}
// Requirement: Dividend (positive), divisor (positive), returns correct integer after division
// Tests the case where the dividend is less than the divisor. The test should return 0 in this
// case.
@Test
void testDividendLessThanDivisor() {
assertEquals(0, LongDivision.divide(3, 5));
}
// Requirement: Dividend (neither), divisor (positive), returns correct integer after division
// Tests the case where the dividend is 0. This should return a 0.
@Test
void testDividendIsZero() {
assertEquals(0, LongDivision.divide(0, 5));
}
// Requirement: Dividend (positive), divisor (neither), returns correct integer after division
// Tests the case where the divisor is 0. This should return a 0.
@Test
void testDivisionByZero() {
assertEquals(0, LongDivision.divide(5, 0));
}
}