Where to find HibernateSession while mocking using mockito + spring mvc

40 views Asked by At

I am trying to mock the HibernateSession and SessionFactory

I am unable to resolve the below in spring mvc

@Mock private HibernateSession hibernateSession;

I have added the below dependencies

    `<dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-core</artifactId>
        <version>${hibernate.version}</version>
    </dependency>
    <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-entitymanager</artifactId>
        <version>${hibernate.version}</version>
    </dependency>`

Both do not seem to have the HibernateSession class.

0

There are 0 answers