run.sh
来自「Java有关XML编程需要用到axis 的源代码 把里面bin下的包导入相应」· Shell 代码 · 共 100 行
SH
100 行
#!/bin/sh## Driver script to run the interop 3 test clients against# a list of endpoints (one for each test)## Usage: run <endpointfile>## Where <endpointfile> has the syntax# TESTNAME="<endpoint>"#if [ $# -ne 1 ]; then echo "Usage: run endpointfile" exit 1fiendpoints=$1# set up endpoints. $endpoints# EmptySAecho EmptySAif [ ! -z "${Import1}" ]; then java test.wsdl.interop3.emptysa.EmptySATestCase ${EmptySA}echo "======================================================="fi# Import1echo Import1if [ ! -z "${Import1}" ]; then java test.wsdl.interop3.import1.Import1TestCase ${Import1}echo "======================================================="fi# Import2echo Import2if [ ! -z "${Import2}" ]; thenjava test.wsdl.interop3.import2.Import2TestCase ${Import2}echo "======================================================="fi# Import3echo Import3if [ ! -z "${Import3}" ]; thenjava test.wsdl.interop3.import3.Import3TestCase ${Import3}echo "======================================================="fi# Compound1echo Compound1if [ ! -z "${Compound1}" ]; thenjava test.wsdl.interop3.compound1.Compound1TestCase ${Compound1}echo "======================================================="fi# Compound2echo Compound2if [ ! -z "${Compound2}" ]; thenjava test.wsdl.interop3.compound2.Compound2TestCase ${Compound2}echo "======================================================="fi# DocLitecho DocLitif [ ! -z "${DocLit}" ]; thenjava test.wsdl.interop3.docLit.DocLitTestCase ${DocLit}echo "======================================================="fi# DocLitParamecho DocLitParamif [ ! -z "${DocLitParam}" ]; thenjava test.wsdl.interop3.docLitParam.DocLitParamTestCase ${DocLitParam}echo "======================================================="fi# RpcEncecho RpcEncif [ ! -z "${RpcEnc}" ]; thenjava test.wsdl.interop3.rpcEnc.RpcEncTestCase ${RpcEnc}echo "======================================================="fi# TestListecho TestListif [ ! -z "${TestList}" ]; thenjava test.wsdl.interop3.groupE.client.InteropTestListServiceTestClient -l ${TestList}echo "======================================================="fi# TestHeaders#if [ ! -z "${TestHeaders}" ]; then#java test.wsdl.interop3.emptySA.EmptySATestCase ${TestHeaders}#echo "======================================================="#fi
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?