1 18 19 package org.apache.jmeter.config; 20 21 import java.io.Serializable ; 22 23 import org.apache.jmeter.testelement.AbstractTestElement; 24 import org.apache.jmeter.testelement.TestElement; 25 26 30 public class ConfigTestElement 31 extends AbstractTestElement 32 implements Serializable  33 { 34 public final static String USERNAME = "ConfigTestElement.username"; 35 public final static String PASSWORD = "ConfigTestElement.password"; 36 37 public ConfigTestElement() 38 { 39 } 40 41 public void addTestElement(TestElement parm1) 42 { 43 if (parm1 instanceof ConfigTestElement) 44 { 45 mergeIn(parm1); 46 } 47 } 48 } 49 | Popular Tags |