|
|
JMeter example source code file (PackageTest.java)
This example JMeter source code file (PackageTest.java) is included in the DevDaily.com
"Java Source Code
Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.
The JMeter PackageTest.java source code
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
/*
* Created on Jul 25, 2003
*/
package org.apache.jmeter.engine.util;
import java.util.HashMap;
import java.util.Map;
import org.apache.jmeter.junit.JMeterTestCase;
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;
/*
* To run this test stand-alone, ensure that ApacheJMeter_functions.jar is on the classpath,
* as it is needed to resolve the functions.
*/
public class PackageTest extends JMeterTestCase {
private Map<String, String> variables;
private SampleResult result;
private ReplaceStringWithFunctions transformer;
public PackageTest(String arg0) {
super(arg0);
}
private JMeterContext jmctx = null;
@Override
public void setUp() {
jmctx = JMeterContextService.getContext();
variables = new HashMap<String, String>();
variables.put("my_regex", ".*");
variables.put("server", "jakarta.apache.org");
result = new SampleResult();
result.setResponseData("<html>hello world |