File tree Expand file tree Collapse file tree 6 files changed +0
-14
lines changed
src/test/java/com/sweetypie/sweetypie/repository Expand file tree Collapse file tree 6 files changed +0
-14
lines changed Original file line number Diff line number Diff line change 33import com .sweetypie .sweetypie .model .Accommodation ;
44import org .junit .jupiter .api .DisplayName ;
55import org .junit .jupiter .api .Test ;
6- import org .junit .jupiter .api .extension .ExtendWith ;
76import org .springframework .beans .factory .annotation .Autowired ;
87import org .springframework .boot .test .autoconfigure .orm .jpa .DataJpaTest ;
98import org .springframework .data .domain .PageRequest ;
109import org .springframework .data .domain .Pageable ;
11- import org .springframework .test .context .junit .jupiter .SpringExtension ;
1210
1311import java .util .List ;
1412
1513import static org .assertj .core .api .Assertions .assertThat ;
1614
1715@ DataJpaTest (properties = "spring.config.location=classpath:test.yml" )
18- @ ExtendWith (SpringExtension .class )
1916class AccommodationRepositoryTest {
2017
2118 @ Autowired
Original file line number Diff line number Diff line change 22
33import com .sweetypie .sweetypie .model .BookedDate ;
44import org .junit .jupiter .api .Test ;
5- import org .junit .jupiter .api .extension .ExtendWith ;
65import org .springframework .beans .factory .annotation .Autowired ;
76import org .springframework .boot .test .autoconfigure .orm .jpa .DataJpaTest ;
8- import org .springframework .test .context .junit .jupiter .SpringExtension ;
97
108import java .time .LocalDate ;
119import java .util .Optional ;
1412
1513
1614@ DataJpaTest (properties = "spring.config.location=classpath:test.yml" )
17- @ ExtendWith (SpringExtension .class )
1815class BookedDateRepositoryTest {
1916
2017 @ Autowired
Original file line number Diff line number Diff line change 1616import static org .assertj .core .api .Assertions .assertThat ;
1717
1818@ DataJpaTest (properties = "spring.config.location=classpath:test.yml" )
19- @ ExtendWith (SpringExtension .class )
2019class BookmarkRepositoryTest {
2120
2221 @ Autowired
Original file line number Diff line number Diff line change 33import com .sweetypie .sweetypie .model .Member ;
44import org .junit .jupiter .api .DisplayName ;
55import org .junit .jupiter .api .Test ;
6- import org .junit .jupiter .api .extension .ExtendWith ;
76import org .springframework .beans .factory .annotation .Autowired ;
87import org .springframework .boot .test .autoconfigure .orm .jpa .DataJpaTest ;
9- import org .springframework .test .context .junit .jupiter .SpringExtension ;
108
119import java .util .Optional ;
1210
1311import static org .assertj .core .api .Assertions .assertThat ;
1412
1513@ DataJpaTest (properties = "spring.config.location=classpath:test.yml" )
16- @ ExtendWith (SpringExtension .class )
1714class MemberRepositoryTest {
1815
1916 @ Autowired
Original file line number Diff line number Diff line change 1414import static org .assertj .core .api .Assertions .assertThat ;
1515
1616@ DataJpaTest (properties = "spring.config.location=classpath:test.yml" )
17- @ ExtendWith (SpringExtension .class )
1817class ReservationRepositoryTest {
1918
2019 @ Autowired
Original file line number Diff line number Diff line change 77import com .sweetypie .sweetypie .model .Review ;
88import org .junit .jupiter .api .DisplayName ;
99import org .junit .jupiter .api .Test ;
10- import org .junit .jupiter .api .extension .ExtendWith ;
1110import org .springframework .beans .factory .annotation .Autowired ;
1211import org .springframework .boot .test .autoconfigure .orm .jpa .DataJpaTest ;
13- import org .springframework .test .context .junit .jupiter .SpringExtension ;
1412
1513import java .time .LocalDate ;
1614import java .util .ArrayList ;
1917import static org .assertj .core .api .Assertions .assertThat ;
2018
2119@ DataJpaTest (properties = "spring.config.location=classpath:test.yml" )
22- @ ExtendWith (SpringExtension .class )
2320class ReviewRepositoryTest {
2421
2522 @ Autowired
You can’t perform that action at this time.
0 commit comments