mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-27 14:34:05 +08:00
15 lines
379 B
Java
15 lines
379 B
Java
package com.thealgorithms.conversions;
|
|
|
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
public class HexaDecimalToDecimalTest {
|
|
|
|
@Test
|
|
public void testhexaDecimalToDecimal() {
|
|
assertEquals(161, HexaDecimalToDecimal.getHexaToDec("A1"));
|
|
assertEquals(428, HexaDecimalToDecimal.getHexaToDec("1ac"));
|
|
}
|
|
}
|