sebb        2004/02/22 11:15:09

  Modified:    src/core/org/apache/jmeter/engine/util PackageTest.java
  Log:
  Fetch context in setUp
  
  Revision  Changes    Path
  1.6       +11 -7     
jakarta-jmeter/src/core/org/apache/jmeter/engine/util/PackageTest.java
  
  Index: PackageTest.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/core/org/apache/jmeter/engine/util/PackageTest.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- PackageTest.java  14 Feb 2004 03:34:28 -0000      1.5
  +++ PackageTest.java  22 Feb 2004 19:15:09 -0000      1.6
  @@ -29,6 +29,7 @@
   import org.apache.jmeter.samplers.SampleResult;
   import org.apache.jmeter.testelement.property.JMeterProperty;
   import org.apache.jmeter.testelement.property.StringProperty;
  +import org.apache.jmeter.threads.JMeterContext;
   import org.apache.jmeter.threads.JMeterContextService;
   import org.apache.jmeter.threads.JMeterVariables;
   
  @@ -46,8 +47,11 @@
           // TODO Auto-generated constructor stub
       }
   
  +    private JMeterContext jmctx = null;
  +    
       public void setUp()
       {
  +     jmctx =JMeterContextService.getContext();
           variables = new HashMap();
           variables.put("my_regex", ".*");
           variables.put("server", "jakarta.apache.org");
  @@ -56,13 +60,13 @@
               "<html>hello world</html> costs: $3.47,$5.67".getBytes());
           transformer =
               new ReplaceStringWithFunctions(new CompoundVariable(), variables);
  -        JMeterContextService.getContext().setVariables(new JMeterVariables());
  -        JMeterContextService.getContext().setSamplingStarted(true);
  -        JMeterContextService.getContext().setPreviousResult(result);
  -        JMeterContextService.getContext().getVariables().put(
  +        jmctx.setVariables(new JMeterVariables());
  +        jmctx.setSamplingStarted(true);
  +        jmctx.setPreviousResult(result);
  +        jmctx.getVariables().put(
               "server",
               "jakarta.apache.org");
  -        JMeterContextService.getContext().getVariables().put("my_regex", ".*");
  +        jmctx.getVariables().put("my_regex", ".*");
       }
   
       public void testFunctionParse1() throws Exception
  @@ -81,7 +85,7 @@
           assertTrue(Integer.parseInt(newProp.getStringValue()) > -1);
           assertEquals(
               "2",
  -            JMeterContextService.getContext().getVariables().getObject("d,ay"));
  +            jmctx.getVariables().getObject("d,ay"));
       }
   
       public void testParseExample1() throws Exception
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to