Add test case for CatalanNumber (#3698)
This commit is contained in:
parent
b46bf0d9b0
commit
38eadd928a
@ -0,0 +1,14 @@
|
||||
package com.thealgorithms.dynamicprogramming;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class CatalanNumberTest {
|
||||
|
||||
@Test
|
||||
public void testCatalanNumber() {
|
||||
assertEquals(42, CatalanNumber.findNthCatalan(5));
|
||||
assertEquals(16796, CatalanNumber.findNthCatalan(10));
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user