⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mttestsuite.java

📁 derby database source code.good for you.
💻 JAVA
字号:
/*   Derby - Class org.apache.derby.impl.tools.ij.mtTestSuite   Copyright 1998, 2004 The Apache Software Foundation or its licensors, as applicable.   Licensed 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. */package org.apache.derby.impl.tools.ij;import java.util.Vector;import java.util.Enumeration;import java.util.Properties;import java.io.FileNotFoundException;import java.io.IOException;import java.lang.Math;/** */public class mtTestSuite{	private Vector cases;	private Vector last;	private Vector init;	private mtTime time;	private int numThreads;	private String rootDir = null;	mtTestSuite(int numThreads, mtTime time, 			Vector initCases, Vector testCases, Vector finalCases)	{		this.numThreads = numThreads;		this.time = time;		this.cases = testCases;		this.init = initCases;		this.last = finalCases;	}	public void init()	{		boolean loadInitFailed = loadCases(init);		boolean loadTestsFailed = loadCases(cases);		boolean loadLastFailed = loadCases(last);		if ((loadInitFailed == true) ||			(loadTestsFailed == true) ||			(loadLastFailed == true))		{			throw new Error("Initialization Error");		}	}	/**	** @return boolean indicates if there was a problem loading	** 	the file	*/	private boolean loadCases(Vector cases)	{		if (cases == null)			return false;		boolean gotError = false;		Enumeration e = cases.elements();		mtTestCase tcase; 		while (e.hasMoreElements())		{			tcase = (mtTestCase)e.nextElement();			try			{				tcase.initialize(rootDir);			}			catch (Throwable t)			{				gotError = true;			}		}		return gotError;	}	public void setRoot(String rootDir)	{		this.rootDir = rootDir;	}	public String getRoot()	{		return rootDir;	}	public int getNumThreads()	{		return numThreads;	}	public Vector getCases()	{		return cases;	}	public Vector getInitCases()	{		return init;	}	public Vector getFinalCases()	{		return last;	}	public mtTime getTime()	{		return time;	}	public long getTimeMillis()	{		return ((time.hours * 360) +				(time.minutes * 60) +				(time.seconds)) * 1000;	}	public String toString()	{		String str;		int	len;		int i;			str = "TEST CASES\nNumber of Threads: "+numThreads;		str +="\nTime: "+time;		str +="\nNumber of Initializers: "+init.size()+"\n";		for (i = 0, len = init.size(); i < len; i++)		{			str += init.elementAt(i).toString() + "\n";		}		str +="\nNumber of Cases: "+cases.size()+"\n";		for (i = 0, len = cases.size(); i < len; i++)		{			str += cases.elementAt(i).toString() + "\n";		}		str +="\nNumber of Final Cases: "+last.size()+"\n";		for (i = 0, len = last.size(); i < len; i++)		{			str += last.elementAt(i).toString() + "\n";		}		return str;	}	/*	** Grab a test case.  Pick one randomly and	** try to grab that case.  If we get it we are	** done.  Otherwise, try try again.	*/	public mtTestCase grabTestCase() 	{		int numCases = cases.size();		int caseNum;		mtTestCase testCase;		do		{			caseNum = (int)((java.lang.Math.random() * 1311) % numCases);			testCase = (mtTestCase)cases.elementAt(caseNum);		}		while (testCase.grab() == false);			return testCase;		}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -