Skip to content

Commit

Permalink
feat: GuiInputSecurityTest private constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
Nolife999 committed Nov 30, 2023
1 parent 6097d5e commit 85c55cf
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
package fr.insee.arc.utils.security;

import static org.junit.Assert.*;
import static org.junit.Assert.assertEquals;

import java.lang.reflect.InvocationTargetException;
import java.util.Arrays;
import java.util.List;

import org.junit.Test;

import fr.insee.arc.utils.utils.PrivateConstructorTest;

public class GuiInputSecurityTest {

@Test
public void testServiceHashFileNameIsUtilityClass() throws NoSuchMethodException, InvocationTargetException, InstantiationException, IllegalAccessException {
PrivateConstructorTest.testConstructorIsPrivate(GuiInputSecurity.class);
}

@Test
public void testFormatAsDatabaseIdentifier() {

Expand Down

0 comments on commit 85c55cf

Please sign in to comment.