tj
2025-06-05 2d549a04870d1315868a7cf19952b64e8071e711
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.cloudroam;
 
import com.cloudroam.module.file.FileProperties;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.ActiveProfiles;
 
@SpringBootTest
@ActiveProfiles("test")
public class LatticyApplicationTests {
 
    @Autowired
    private FileProperties fileProperties;
 
    @Test
    public void contextLoads() {
        System.out.println();
    }
 
}