We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab705d5 commit 009eb6dCopy full SHA for 009eb6d
1 file changed
src/test/java/com/example/cp_main_be/domain/test/Test1.java
@@ -0,0 +1,20 @@
1
+package com.example.cp_main_be.domain.test;
2
+
3
+import org.assertj.core.api.Assertions;
4
+import org.junit.jupiter.api.Test;
5
+import org.junit.jupiter.api.extension.ExtendWith;
6
+import org.mockito.junit.jupiter.MockitoExtension;
7
8
+@ExtendWith(MockitoExtension.class)
9
+public class Test1 {
10
11
+ @Test
12
+ public void hi() throws Exception {
13
+ // given
14
15
+ // when
16
17
+ // then
18
+ Assertions.assertThat(true).isTrue();
19
+ }
20
+}
0 commit comments