forked from TheAlgorithms/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBinaryAdditionTest.java
More file actions
96 lines (81 loc) · 2.54 KB
/
BinaryAdditionTest.java
File metadata and controls
96 lines (81 loc) · 2.54 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package com.thealgorithms.greedyalgorithms;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
public class BinaryAdditionTest {
BinaryAddition binaryAddition = new BinaryAddition();
@Test
public void testEqualLengthNoCarry() {
String a = "1010";
String b = "1101";
String expected = "10111";
assertEquals(expected, binaryAddition.addBinary(a, b));
}
@Test
public void testEqualLengthWithCarry() {
String a = "1111";
String b = "1111";
String expected = "11110";
assertEquals(expected, binaryAddition.addBinary(a, b));
}
@Test
public void testDifferentLengths() {
String a = "101";
String b = "11";
String expected = "1000";
assertEquals(expected, binaryAddition.addBinary(a, b));
}
@Test
public void testAllZeros() {
String a = "0";
String b = "0";
String expected = "0";
assertEquals(expected, binaryAddition.addBinary(a, b));
}
@Test
public void testAllOnes() {
String a = "1111";
String b = "1111";
String expected = "11110";
assertEquals(expected, binaryAddition.addBinary(a, b));
}
@Test
public void testOneZeroString() {
String a = "0";
String b = "10101";
String expected = "10101";
assertEquals(expected, binaryAddition.addBinary(a, b));
// Test the other way around
a = "10101";
b = "0";
expected = "10101";
assertEquals(expected, binaryAddition.addBinary(a, b));
}
@Test
public void testLargeBinaryNumbers() {
String a = "101010101010101010101010101010";
String b = "110110110110110110110110110110";
String expected = "1100001100001100001100001100000";
assertEquals(expected, binaryAddition.addBinary(a, b));
}
@Test
public void testOneMuchLonger() {
String a = "1";
String b = "11111111";
String expected = "100000000";
assertEquals(expected, binaryAddition.addBinary(a, b));
}
@Test
public void testEmptyStrings() {
String a = "";
String b = "";
String expected = ""; // Adding two empty strings should return 0
assertEquals(expected, binaryAddition.addBinary(a, b));
}
@Test
public void testAlternatingBits() {
String a = "10101010";
String b = "01010101";
String expected = "11111111";
assertEquals(expected, binaryAddition.addBinary(a, b));
}
}