transcendental-lisp/test/util/CharactersTester.java

21 lines
456 B
Java
Raw Normal View History

2017-02-08 12:56:24 -05:00
package util;
import static org.junit.Assert.assertTrue;
import java.lang.reflect.*;
import org.junit.Test;
public class CharactersTester {
@Test
public void constructorIsPrivate() throws Exception {
2017-02-08 12:56:24 -05:00
Constructor<Characters> constructor = Characters.class.getDeclaredConstructor();
assertTrue(Modifier.isPrivate(constructor.getModifiers()));
constructor.setAccessible(true);
constructor.newInstance();
}
}