zoukankan      html  css  js  c++  java
  • Spring 测试

    1. pom.xml ==> Depency

    <!-- Test -->
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-test</artifactId>
        <scope>test</scope>
    </dependency>
    
    <!-- Spring-beans -->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-beans</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
    </dependency>

    2. BaseTest.java

    package com.ctrip.arch.titanqconfig;
    
    import junit.framework.TestCase;
    import org.junit.runner.RunWith;
    import org.springframework.test.context.ContextConfiguration;
    import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
    
    
    @RunWith(SpringJUnit4ClassRunner.class)
    @ContextConfiguration(locations = { "classpath:applicationContext.xml" })
    public class BaseTest extends TestCase {
    
    
    }

    3. Sample

    package com.ctrip.arch.titanqconfig.crypto;
    
    import org.apache.logging.log4j.util.Strings;
    import org.junit.Test;
    import org.junit.runner.RunWith;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.test.context.ContextConfiguration;
    import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
    
    
    @RunWith(SpringJUnit4ClassRunner.class)
    @ContextConfiguration(classes = {Soa2KeyService.class, DefaultDataSourceCrypto.class})
    public class KeyServiceTester {
        @Autowired
        Soa2KeyService service;
    
        @Test
        public void testGetKey() throws Exception {
            String sslCode = "TT00000000000123";
            String key = service.getKeyInfo(sslCode).getKey();
            System.out.println("key=" + key);
            assert(Strings.isNotBlank(key));
        }
        
    }
  • 相关阅读:
    luogu1803 凌乱的yyy / 线段覆盖
    luogu1051 谁拿了最多奖学金
    luogu1208 [USACO1.3]混合牛奶 Mixing Milk
    luogu1090合并果子
    Lab 1 : Part 1 exercise 2
    动态规划(DP)笔记(三):常见普通题型
    leetcode 213. 打家劫舍II: 动态规划(c++)
    动态规划(DP)笔记(二): 序列型及简单例题
    Lab1: Booting a PC
    动态规划(DP)笔记(一): 简介
  • 原文地址:https://www.cnblogs.com/ylz8401/p/7383225.html
Copyright © 2011-2022 走看看