All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.qihootest.leo.dispatch.testcase.SuperCase Maven / Gradle / Ivy

package com.github.qihootest.leo.dispatch.testcase;

import java.util.ArrayList;
import java.util.List;

/**
 * 测试用例基类
 * @author lianghui ([email protected])
 *
 */
public abstract class SuperCase implements ICase {

		protected List xmlPathNameList;
		/**
		 * 构造函数
		 */
		public SuperCase(){
			xmlPathNameList=new ArrayList<>();
		}
		/**
		 * 返回用例列表  xml文件信息
		 * @return List
		 */
		public List getCaseList() {
			return this.xmlPathNameList;
		}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy