Package org.jtester.annotations

Examples of org.jtester.annotations.Inject.properties()


    for (Field injectField : injects) {
      Class injectedClazz = injectField.getType();
      Inject inject = injectField.getAnnotation(Inject.class);

      Object injectedObject = JTesterProxy.proxy(testedObject.getClass(), injectField);
      injectedInto(testedObject, injectedObject, injectedClazz, inject.targets(), inject.properties());
    }
  }

  /**
   * 把对象injectedObject注入到testedObject对应的变量targets的属性中
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.