审查视图

src/test/java/com/tianbo/warehouse/WarehouseApplicationTests.java 580 字节
朱兆平 authored
1 2 3 4 5 6
package com.tianbo.warehouse;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
朱兆平 authored
7
import org.springframework.test.context.web.WebAppConfiguration;
朱兆平 authored
8 9

@RunWith(SpringRunner.class)
10 11
//解决mvn clean package打包项目websocketjavax.websocket.server.ServerContainer not available报错的问题
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
朱兆平 authored
12 13 14 15 16 17 18 19
public class WarehouseApplicationTests {

	@Test
	public void contextLoads() {
	}

}