transcendental-lisp/test/util/CharactersTest.java

22 lines
499 B
Java
Raw Normal View History

2017-02-08 12:56:24 -05:00
package util;
import static org.junit.Assert.assertTrue;
2017-11-12 09:42:25 -05:00
import java.lang.reflect.Constructor;
import java.lang.reflect.Modifier;
2017-02-08 12:56:24 -05:00
import org.junit.Test;
2017-03-15 13:37:39 -04:00
public class CharactersTest {
2017-02-08 12:56:24 -05:00
@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();
}
}