Skip to content

Commit 4b14d41

Browse files
committed
unit vs integration
1 parent 5bf53dd commit 4b14d41

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
package guru.springframework.sfgpetclinic.services.springdatajpa;
2+
3+
import org.junit.jupiter.api.BeforeEach;
4+
import org.junit.jupiter.api.Test;
5+
6+
import static org.junit.jupiter.api.Assertions.*;
7+
8+
class PetTypeSDJpaServiceIT {
9+
10+
@BeforeEach
11+
void setUp() {
12+
}
13+
14+
@Test
15+
void findAll() {
16+
}
17+
18+
@Test
19+
void findById() {
20+
}
21+
22+
@Test
23+
void save() {
24+
}
25+
26+
@Test
27+
void delete() {
28+
}
29+
30+
@Test
31+
void deleteById() {
32+
}
33+
}

0 commit comments

Comments
 (0)