kongzy
2023-10-23 1eeae82f74cbb3469ad8931e45b6fc77a945b912
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.nanometer.smartlab;
 
 
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.web.WebAppConfiguration;
 
@RunWith(SpringJUnit4ClassRunner.class)
@WebAppConfiguration
//@ContextConfiguration(locations = {})
public class TestDemo {
 
    @Test
    public void testDemo(){
        System.out.println("gggg");
 
    }
}