expectPrivate(tested, "aTestMethod", new Class<?>[] { Integer.class },
new Integer(15)).andReturn(expected);
replay(tested);
final int actual = tested.methodCallingWrappedTestMethod();
verify(tested);
assertEquals("Expected and actual did not match", expected, actual);
}