Skip to content

Commit

Permalink
test: binary gap
Browse files Browse the repository at this point in the history
  • Loading branch information
rldnrl committed Oct 20, 2023
1 parent 1c64df5 commit be9993f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions test/codility/BinaryGapTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package codility;

import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Assertions;

class BinaryGapTest {
@Test
void binaryGapTest() {
Assertions.assertEquals(BinaryGap.solution(9), 2);
}
}

0 comments on commit be9993f

Please sign in to comment.