add ArthasTunnelApplicationTest

pull/1858/head
hengyunabc 4 years ago
parent 43b5b05669
commit 110bfcbeea

@ -0,0 +1,22 @@
package com.alibaba.arthas.tunnel.server.app;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
/**
*
* @author hengyunabc 2021-07-12
*
*/
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes = { ArthasTunnelApplication.class })
public class ArthasTunnelApplicationTest {
@Test
public void contextLoads() {
System.out.println("hello");
}
}
Loading…
Cancel
Save