use of easytests.core.entities.UserEntity in project easy-tests by malinink.
the class UsersMapperTest method testDelete.
@Test
public void testDelete() throws Exception {
UserEntity userEntity = this.usersMapper.find(1);
Assert.assertNotNull(userEntity);
this.usersMapper.delete(userEntity);
userEntity = this.usersMapper.find(1);
Assert.assertNull(userEntity);
}
Aggregations