12345678910111213141516171819 |
- package com.nokia.dao;
- import org.junit.jupiter.api.Test;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.boot.test.context.SpringBootTest;
- @SpringBootTest
- public class UserRoleDaoTest {
- @Autowired
- private UserRoleDao userRoleDao;
- @Test
- public void testHasRole() {
- Integer role_id = userRoleDao.hasRole(2, 4);
- System.out.println(role_id);
- }
- }
|