transcendental-lisp/test/util/PathTest.java

23 lines
531 B
Java
Raw Normal View History

package util;
2017-11-23 11:35:28 -05:00
import static org.hamcrest.Matchers.is;
import static org.junit.Assert.assertThat;
2017-11-12 09:42:25 -05:00
import java.lang.reflect.Constructor;
import java.lang.reflect.Modifier;
import org.junit.Test;
2017-03-15 13:37:39 -04:00
public class PathTest {
@Test
public void constructorIsPrivate() throws Exception {
Constructor<Path> constructor = Path.class.getDeclaredConstructor();
2017-11-23 11:35:28 -05:00
assertThat(Modifier.isPrivate(constructor.getModifiers()), is(true));
constructor.setAccessible(true);
constructor.newInstance();
}
}