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.