Skip to content

Commit 76d142c

Browse files
committed
Added test
1 parent dade6c2 commit 76d142c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/test/java/g3601_3700/s3637_trionic_array_i/SolutionTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,9 @@ void isTrionic() {
1515
void isTrionic2() {
1616
assertThat(new Solution().isTrionic(new int[] {2, 1, 3}), equalTo(false));
1717
}
18+
19+
@Test
20+
void isTrionic3() {
21+
assertThat(new Solution().isTrionic(new int[] {3, 7, 1}), equalTo(false));
22+
}
1823
}

0 commit comments

Comments
 (0)