ThirdInterfaceTest.java
1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
* @(#)EventTest.java
*
* Copyright (c) 2014-2017 xiniunet 版权所有
* xiniunet. All rights reserved.
*
* This software is the confidential and proprietary
* information of xiniunet.
* ("Confidential Information"). You shall not disclose
* such Confidential Information and shall use it only
* in accordance with the terms of the contract agreement
* you entered into with xiniunet.
*/
package com.xiniunet.system.railway;
import com.xiniunet.framework.base.BaseTest;
import com.xiniunet.framework.security.Passport;
import com.xiniunet.railway.request.EventCreateRequest;
import com.xiniunet.railway.request.EventFindRequest;
import com.xiniunet.railway.request.EventSearchRequest;
import com.xiniunet.railway.response.EventCreateResponse;
import com.xiniunet.railway.response.EventFindResponse;
import com.xiniunet.railway.response.EventSearchResponse;
import com.xiniunet.railway.service.RailwayService;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.transaction.TransactionConfiguration;
import java.util.Date;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
/**
*
* @author xiniunet
*/
@TransactionConfiguration(defaultRollback = false)
public class ThirdInterfaceTest extends BaseTest {
// @Autowired
// private RailwayService railwayService;
//
// @Autowired
// private Passport passport;
@Before
public void setUp() throws Exception {
}
@After
public void tearDown() throws Exception {
}
@Test
public void testJava() throws Exception {
System.out.println("[XT] test java");
}
}