We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13aa0e7 commit 3d4d7beCopy full SHA for 3d4d7be
1 file changed
src/test/java/com/fishercoder/firstthousand/_345Test.java
@@ -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