Package org.strecks.util.impl

Examples of org.strecks.util.impl.ClassWithPrivateMethod


  @Test
  public void testInvokePrivateMethod() throws Exception
  {
    try
    {
      ClassWithPrivateMethod instance = new ClassWithPrivateMethod();
      Object invokeVoidMethod = ReflectHelper.invokeMethod(instance, "method", String.class);
      Assert.assertEquals(invokeVoidMethod, "hello");
    }
    catch (ApplicationRuntimeException e)
    {
View Full Code Here

TOP

Related Classes of org.strecks.util.impl.ClassWithPrivateMethod

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.