We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 516e464 commit e623c9bCopy full SHA for e623c9b
src/test/java/com/thealgorithms/greedyalgorithms/BinaryAdditionTest.java
@@ -1,6 +1,7 @@
1
package com.thealgorithms.greedyalgorithms;
2
3
import static org.junit.jupiter.api.Assertions.assertEquals;
4
+
5
import org.junit.jupiter.api.Test;
6
7
public class BinaryAdditionTest {
@@ -39,7 +40,6 @@ public void testAllZeros() {
39
40
assertEquals(expected, binaryAddition.addBinary(a, b));
41
}
42
-
43
@Test
44
public void testAllOnes() {
45
String a = "1111";
@@ -94,4 +94,3 @@ public void testAlternatingBits() {
94
95
96
97
0 commit comments