如何在没有@datajpatest的春季框架中测试Crudrepository

发布于 2025-01-22 17:59:54 字数 1079 浏览 0 评论 0原文

我想在Spring Framework应用程序中为以下UserRepository编写单元测试:

@Repository
public interface UserRepository extends CrudRepository<User, Long> {
    User findByEmail(String email);
}

但是CanFinduserByeMail()测试失败是因为

@ExtendWith(MockitoExtension.class)
public class UserRepositoryTest {

    @Autowired
    private UserRepository underTest;


    @Test
    public void canFindUserByEmail() {
        // given
        User expectedUser = new User();
        expectedUser.setEmail("[email protected]");
        underTest.save(expectedUser);

        // when
        final User actualUser = underTest.findByEmail(expectedUser.getEmail());

        // then
        assertThat(actualUser).isEqualTo(expectedUser);
    }
}

当我添加下一个注释时承诺是无效的,但是它们是否打算用于集成测试,而不是用于单元测试?

@ExtendWith(SpringExtension.class)
@ContextConfiguration(classes = {SpringConfig.class})
@WebAppConfiguration()

谢谢!

I wanted to write unit test for the following UserRepository in Spring Framework application:

@Repository
public interface UserRepository extends CrudRepository<User, Long> {
    User findByEmail(String email);
}

But canFindUserByEmail() test fails because underTest is null

@ExtendWith(MockitoExtension.class)
public class UserRepositoryTest {

    @Autowired
    private UserRepository underTest;


    @Test
    public void canFindUserByEmail() {
        // given
        User expectedUser = new User();
        expectedUser.setEmail("[email protected]");
        underTest.save(expectedUser);

        // when
        final User actualUser = underTest.findByEmail(expectedUser.getEmail());

        // then
        assertThat(actualUser).isEqualTo(expectedUser);
    }
}

When I add the next annotations it works, but are they intended for integration testing, not for unit testing?

@ExtendWith(SpringExtension.class)
@ContextConfiguration(classes = {SpringConfig.class})
@WebAppConfiguration()

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文