Package org.apache.turbine.pipeline

Examples of org.apache.turbine.pipeline.PipelineData


  }

  public void testDoPerformWithPipelineData() throws Exception
  {
      RunData data = getRunData(request,response,config);
        PipelineData pipelineData = data;
    data.setAction("VelocityActionDoesNothing");
    int numberOfCalls = VelocityActionDoesNothing.numberOfCalls;
    int pipelineDataCalls = VelocityActionDoesNothing.pipelineDataCalls;
    int runDataCalls = VelocityActionDoesNothing.runDataCalls;
    try {
View Full Code Here


  public void testPipelineDataContainsRunData()
  {
      try
      {
        RunData data = getRunData(request,response,config);
            PipelineData pipelineData = data;
      data.setLayout("TestVelocityOnlyLayout");
      int numberOfCalls = TestVelocityOnlyLayout.numberOfCalls;
      try {
        LayoutLoader.getInstance().exec(pipelineData, data.getLayout());
      } catch (Exception e) {
View Full Code Here

TOP

Related Classes of org.apache.turbine.pipeline.PipelineData

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.