mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-28 15:02:46 +08:00
15 lines
376 B
Java
15 lines
376 B
Java
package com.thealgorithms.conversions;
|
|
|
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
public class OctalToDecimalTest {
|
|
|
|
@Test
|
|
public void testOctalToDecimal() {
|
|
assertEquals(1465, OctalToDecimal.convertOctalToDecimal("2671"));
|
|
assertEquals(189, OctalToDecimal.convertOctalToDecimal("275"));
|
|
}
|
|
}
|