123456789101112131415161718192021222324 |
- package com.bus.web;
- import org.junit.Test;
- import org.springframework.beans.factory.annotation.Autowired;
- import com.data.service.IImportDataFileService;
- import common.BaseTestCase;
- public class BusOrgControllerTest extends BaseTestCase{
- @Autowired
- private IImportDataFileService importDataFileService;
- @Test
- public void test() {
- }
- }
|