有没有简单的方法来创建pojo类并在junit中填充随机值以便于测试?例子:
Student student = new Student(); student.setName(name); student.setAddress(address); student.setAge(age) --- --- studentService.save(student);
基本上,我希望能够轻松地创建pojo类,而不用花时间填充随机值。目的是用数据测试服务层或控制器层。
6jjcrrmo1#
这里有一个podam的解决方案梯度依赖
testImplementation 'uk.co.jemos.podam:podam:7.2.5.RELEASE'
例子
PodamFactory podamFactory = new PodamFactoryImpl(); Student student = podamFactory.manufacturePojo(Student.class);
1条答案
按热度按时间6jjcrrmo1#
这里有一个podam的解决方案
梯度依赖
例子