mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-28 06:55:02 +08:00
15 lines
372 B
Java
15 lines
372 B
Java
package com.thealgorithms.conversions;
|
|
|
|
import static org.junit.jupiter.api.Assertions.*;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
public class DecimalToHexaDecimalTest {
|
|
|
|
@Test
|
|
public void testDecimalToHexaDecimal() {
|
|
assertEquals("000000be", DecimalToHexaDecimal.decToHex(190));
|
|
assertEquals("00000708", DecimalToHexaDecimal.decToHex(1800));
|
|
}
|
|
}
|