Package tests.jfun.yan.benchmark.models

Examples of tests.jfun.yan.benchmark.models.Noop


      public void run() throws Exception {
        yan.getInstance("barproxy");
      }
    }.start(true);
   
    Noop bar = (Noop)yan.getInstance("barproxy");
    assertNotNull(bar);
  }
View Full Code Here


      public void run() throws Exception {
        yan.getInstance("complex_proxy");
      }
    }.start(true);
   
    Noop bar = (Noop)yan.getInstance("complex_proxy");
    assertNotNull(bar);
  }
View Full Code Here

        Injection inj = (Injection)yan.getInstance("injection");
        inj.inject(soo);
      }
    }.start(true);
   
    Noop bar = (Noop)yan.getInstance("complex_proxy");
    assertNotNull(bar);
  }
View Full Code Here

TOP

Related Classes of tests.jfun.yan.benchmark.models.Noop

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.