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

📄 script

📁 软件工程方面关于winrunner 7.6测试的资料
💻
字号:
################################################################################
# TEST:	emos_testset_driver
################################################################################
# $Revision: 1.1.1.1 $
# $Author: drajovic $
# $Date: 2004/03/24 20:14:01 $
# $Source: d:\\Archive/FRAMEWORK\\EMOS_GPL/FRM/TPL/Scripts/DRV/emos_testset_driver/script,v $
# $NoKeywords: $
################################################################################

#/***
#* A simple driver for a single test set. This driver was designed to be used
#* with TestDirector. The idea is that we could create test sets in TestDirector
#* and replace with them the Frameworks concept of "test suite". So a test set
#* in TestDirector could act a counterpart of one test suite. What we need to do
#* is create automate tests within the test subject tree that all prepare the
#* required three parameters and call this test.
#*/

static rc;

if ( arg_script == "" || arg_table == "" || arg_testset == "" )
    treturn E_ILLEGAL_PARAMETER;

wrlog_set_start( arg_testset );
FRM_close_all();
rc = FRM_DRV_test_set_driver( 
        arg_script, 
        join_path( DATA_HOME, arg_table, "\\" ),
		arg_testset );
FRM_close_all();
wrlog_set_stop( arg_testset, rc );

treturn rc;

⌨️ 快捷键说明

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