Package com.linkedin.restli.server.resources.fixtures

Examples of com.linkedin.restli.server.resources.fixtures.ConstructorArgResource


    InjectResourceFactory factory = new InjectResourceFactory(ctx);

    factory.setRootResources(pathRootResourceMap);

    // #1 happy path
    ConstructorArgResource r1 = factory.create(ConstructorArgResource.class);
    assertNotNull(r1);
    assertNotNull(r1.getDependency1());
    assertNotNull(r1.getDependency2());
    assertNull(r1.getNonInjectedDependency());
  }
View Full Code Here

TOP

Related Classes of com.linkedin.restli.server.resources.fixtures.ConstructorArgResource

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.