junit

Spring通过IoC容器来管理所有java对象(也称bean)及其相互间的依赖关系

  • 1.在pom.xml中添加junit,spring-test,spring-context依赖


    junit_第1张图片
    image.png
  • 2.建立Max类
package com.spring.IoC;

public class Max {
    private int a;
    private int b;

    public Max(int a, int b) {
        this.a = a;
        this.b = b;
    }
    public int getMax(){
        return a>b?a:b;
    }
}
  • 3.建立MaxTest
    把鼠标放在Max类名上按crtl+shift+T,选择要测试的方法
import static org.junit.Assert.assertEquals;


//指定单元测试环境
@RunWith(SpringJUnit4ClassRunner.class)
//指定配置文件路径
@ContextConfiguration(locations={"/Spring.xml"})
public class MaxTest {
    //自动注入
    @Autowired
    private  Max max;
    @Test
    public void getMax() {
        assertEquals(6, max.getMax());
    }
  • 4.在resource文件夹中建立Spring.xml
 
    
        
        
    
  • 5.运行测试类


    junit_第2张图片
    image.png

你可能感兴趣的:(junit)