BAIS 권한 서비스를 Spring Java로 전환 #3

Open
forge-bot wants to merge 4 commits from forge/BAIS-E2E-MIG-001-attempt-2 into main
Showing only changes of commit 3714a80049 - Show all commits

View file

@ -0,0 +1,13 @@
package com.example;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertTrue;
class AuthorizationServiceTest {
@Test
void testHasAccess() {
AuthorizationService service = new AuthorizationService();
assertTrue(service.hasAccess("user1", "resource1"));
}
}