Skip to content

Commit 3d4d7be

Browse files
add test for 345
1 parent 13aa0e7 commit 3d4d7be

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
package com.fishercoder.firstthousand;
2+
3+
import static org.junit.jupiter.api.Assertions.assertEquals;
4+
5+
import com.fishercoder.solutions.firstthousand._345;
6+
import org.junit.jupiter.api.BeforeEach;
7+
import org.junit.jupiter.api.Test;
8+
9+
public class _345Test {
10+
private _345.Solution1 solution1;
11+
12+
@BeforeEach
13+
public void setup() {
14+
solution1 = new _345.Solution1();
15+
}
16+
17+
@Test
18+
public void test1() {
19+
assertEquals("AceCreIm", solution1.reverseVowels("IceCreAm"));
20+
}
21+
}

0 commit comments

Comments
 (0)