自己在Spring Boot中模拟JPA存储库

时间:2018-05-01 16:14:01

标签: java spring-boot junit mocking

一开始我想承认我知道现有的mockito,EasyMock等。

如何使用OWN mock测试我的数据库。

@Entity
public class CLASS{
    private Long id;

    ***constructors/getters/setters****    
}

-

public interface CLASSrepo extends JpaRepository<CLASS, Long> {
}

-

@Service
public class CLASSservice {

    @Autowired
    CLASSrepo classRepo;
}

如何在不使用Mockito @MockBean @Mock等的情况下创建自己的模拟以及使用repo mock测试服务的任何选项?

0 个答案:

没有答案