@Test
public void test_getDeclaredConstructors() throws Exception {
// Let's call the constructor, nothing reloaded
Result r = getDeclaredConstructors();
assertNotNull(r.returnValue);
Constructor<?>[] ctors = (Constructor<?>[]) r.returnValue;
assertEquals(2, ctors.length);
for (Constructor<?> ctor : ctors) {
if (ctor.getParameterTypes().length == 1 && ctor.getParameterTypes()[0] == Integer.TYPE) {