nickchange
2023-10-12 aa89d67a4ec7560cee226d53dd2be555a9e5df99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.dsh;
 
import com.dsh.account.controller.CoachTypeController;
 
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
 
import java.util.List;
 
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT, classes = AccountApplication.class)
class AccountApplicationTests {
 
    @Autowired
    private CoachTypeController controller;
 
 
    @Test
    void contextLoads() {
 
    }
 
}