mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-28 06:55:02 +08:00
15 lines
359 B
Java
15 lines
359 B
Java
package com.thealgorithms.conversions;
|
|
|
|
import static org.junit.jupiter.api.Assertions.*;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
public class BinaryToHexadecimalTest {
|
|
|
|
@Test
|
|
public void testBinaryToHexadecimal() {
|
|
assertEquals("6A", BinaryToHexadecimal.binToHex(1101010));
|
|
assertEquals("C", BinaryToHexadecimal.binToHex(1100));
|
|
}
|
|
}
|