29 lines
674 B
Java
29 lines
674 B
Java
|
import com.hzya.frame.nifi.service.NifiApiService;
|
|||
|
import org.junit.Test;
|
|||
|
import org.springframework.beans.factory.annotation.Autowired;
|
|||
|
import org.springframework.boot.test.context.SpringBootTest;
|
|||
|
|
|||
|
/**
|
|||
|
* @Author:liuyang
|
|||
|
* @Package:PACKAGE_NAME
|
|||
|
* @Project:fw-nifi
|
|||
|
* @name:TestNifiConfig
|
|||
|
* @Date:2025/5/14 11:26
|
|||
|
* @Filename:TestNifiConfig
|
|||
|
*/
|
|||
|
@SpringBootTest
|
|||
|
public class TestNifiConfig {
|
|||
|
|
|||
|
// @Autowired
|
|||
|
// private NifiApiService nifiService;
|
|||
|
//
|
|||
|
// @Test
|
|||
|
// public void testCreateProcessor() {
|
|||
|
// try {
|
|||
|
// nifiService.getAccessToken();
|
|||
|
// } catch (Exception e) {
|
|||
|
// e.printStackTrace();
|
|||
|
// }
|
|||
|
// }
|
|||
|
}
|