对实体类进行单元测试的小技巧

对实体类进行单元测试的小技巧

抽象类

/**
 * @Author zhaozhen
 * @Date 2021/7/22 6:14 下午
 * @Version 1.0  用来测试实体类,提高单测覆盖率。
 */
@SpringBootTest
@RunWith(MockitoJUnitRunner.class)
public abstract class BaseVoEntityTest<T> {
    protected abstract T getT();

    private void testGetAndSet() throws IllegalAccessException, InstantiationException, IntrospectionException,
            InvocationTargetException, NoSuchMethodException {
        T t = getT();
        Class modelClass = t.getClass();
        Object obj = modelClass.getDeclaredConstructor().newInstance();
        Field[] fields = modelClass.getDeclaredFields();
        for (Field f : fields) {
            boolean isStatic = Modifier.isStatic(f.getModifiers());
            // 过滤字段
            if (f.getName().equals("isSerialVersionUID") || f.getName().equals("serialVersionUID") || isStatic || f.getGenericType().toString().equals("boolean")
                    || f.isSynthetic()) {
                continue;
            }
            PropertyDescriptor pd = new PropertyDescriptor(f.getName(), modelClass);
            Method get = pd.getReadMethod();
            Method set = pd.getWriteMethod();
            set.invoke(obj, get.invoke(obj));
        }
    }

    @Test
    public void getAndSetTest() throws InvocationTargetException, IntrospectionException,
            InstantiationException, IllegalAccessException, NoSuchMethodException {
        this.testGetAndSet();
    }

}

使用示例


public class StudentTest extends BaseVoEntityTest<Student> {

    private Student studentUnderTest;

    @Before
    public void setUp() {
        studentUnderTest = new Student();
        studentUnderTest.setId(1);
        studentUnderTest.setAge(11);
        studentUnderTest.setName("test");
    }

    @Test
    public void testEquals() {
        // Run the test
        final boolean result = studentUnderTest.getName().equals("test");
        // Verify the results
        assertThat(result).isTrue();
    }

    @Override
    protected Student getT() {
        return studentUnderTest;
    }
}
  • 0
    点赞
  • 12
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值