[Minor] Added missing throws arg

This commit is contained in:
Robert von Burg 2023-02-10 10:08:40 +01:00
parent 7db69c6785
commit 7bbab2e0ea
Signed by: eitch
GPG Key ID: 75DB9C85C74331F7
1 changed files with 3 additions and 1 deletions

View File

@ -17,6 +17,7 @@ package li.strolch.service.privilege.users;
import static org.junit.Assert.assertNotNull;
import java.lang.reflect.InvocationTargetException;
import java.util.*;
import li.strolch.privilege.model.UserRep;
@ -54,7 +55,8 @@ public class PrivilegeAddUserServiceTest extends AbstractRealmServiceTest<Privil
}
@Test
public void runTest() throws IllegalAccessException, InstantiationException {
public void runTest()
throws IllegalAccessException, InstantiationException, InvocationTargetException, NoSuchMethodException {
runTransient(PrivilegeUserResult.class);