说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 监控测试软件
1)  Monitor-testing software
监控测试软件
2)  monitor software
监控软件
1.
Design Of Monitor Software Based On Interface Program Of 1553B Emulational Board;
基于1553B仿真卡界面程序的监控软件设计
2.
The design of monitor software in high-power solid laser processing system;
大功率固体激光加工系统监控软件的开发
3.
Its automation system used Modbus plus (MB+) network with redundant function, iFIX monitor software and Modicon Quantum PLC to complete data collection and monitor of the blast furnace proper and the blast heater.
马钢第一炼铁厂9#高炉由原容积300m3增容到380m3,其自动化系统采用了具有冗余功能的Modbusplus(MB+)网络、iFIX的监控软件和ModiconQuantumPLC完成高炉本体和热风炉等数据采集与监控、高炉炉顶、上料槽下和鼓风机系统的控制,全面满足了380m3高炉主要生产工艺要求。
3)  Monitoring software
监控软件
1.
Design of monitoring software for industrial power-distribution system based on AIFCS;
基于AIFCS工业配电系统的监控软件设计
2.
The Application of Multi-thread in Experiment Monitoring Software Development;
多线程技术在远程实验监控软件开发中的应用
3.
OPC’s application in CEMS monitoring software
OPC技术在CEMS监控软件中的应用
4)  monitoring and control software
监控软件
1.
Research and development of monitoring and control software of marine power distribution system based on Kingview;
基于组态王的船舶配电系统监控软件研制
2.
The paper mainly discussed how to apply the COM technology in mine monitoring and control software, and described the implementation method of correlative technology in detail.
主要论述了如何将组件技术运用到煤矿监控软件中,并详细描述了相关技术的实现方法。
3.
In this paper, an open monitoring and control software in motor control center was introduced.
介绍了具有开放性的电动机控制中心监控软件。
5)  Monitoring and Controlling Software
监控软件
1.
UPS Monitoring and Controlling Software for Linux;
Linux平台下的不间断电源监控软件
2.
The monitoring and controlling software is composed of real time monitoring and controlling system, management maintenance system, database management system and report management system.
监控软件由实时监控系统、管理维护系统、数据库管理系统和报表分析处理系统组成,监控对象由维护系统创建,它们模拟实际煤矿系统并实施监控,并与监控、维护、用户界面及数据库紧密联系。
3.
At present, the automatic technology is universally known and the mini monitoring and controlling software is widely required by minor enterprises.
当前 ,自动化技术受到人们的普遍关注 ,小型监控软件具有较大的市场需求。
6)  monitor and control software
监控软件
1.
The programming principle and implementation of device driver of the communication between monitor and control software, for example MCGS, and PLC or gathering clips or aptitude instruments, was presented in this paper in detail.
以MCGS监控软件为例 ,详细介绍了监控软件与PLC、采集板卡、智能仪表等进行数据通信的设备驱动程序的编制原理与实现。
2.
This article introduces the technology of developing the monitor and control software for DCS.
本文介绍基于VFP的DCS监控软件设计技术。
补充资料:软件测试


软件测试
software testing

配置项测试和系统测试。 加强测试管理对于保证测试可靠性十分重要,应按系统化的流程做好4步工作:①制定测试计划,确定总方针、资源及进度;②制定测试说明,包括确定需测试的特性、细化测试计划和设计测试用例集;③执行测试计划,包括实现测试设计、执行测试规程;④评价测试结果及被测软件。在这些工作中应注意以下几点:①及时编写文档,例如软件测试计划、测试报告、测试用例集、测试规程等;②进行两种评审,即测试计划、测试用例集设计和测试规程的评审和测试结果分析的评审;③保存数据。主要是测试用例集、测试记录;④实施配置管理,将测试阶段的工作产品纳入配置管理。 软件测试主要有:软件静态测试,软件动态测试,软件集成测试。 软件静态测试不执行程序代码而寻找其中可能存在的差错或评估程序代码的过程。包括主要由人工进行的代码审查、代码走查、桌面检查,以及主要由软件工具自动进行的静态分析。 ①代码审查。对代码进行的审查,一般依据代码审查单。 ②代码走查。对代码的评审过程,提供若干测试用例,用例用头脑来执行程序。 ③桌面检查。程序员自己检查.或借助于代码检查单,或人工运行自己编写的程序。代码审查和代码走查比桌面检查优越得多,实践表明,可以发现30%一70%的程序差错。 ④静态分析。估计程序而无需执行程序的过程;是一种机械性的、程式化的代码特性分析方法,常借助软件工具进行。一般包括控制流分析、数据流分析、接口分析、表达式分析。可以提供间接涉及程序缺陷的信息;进行语法,语义分析;进行符号求值;为动态测试选择测试用例进行预处理。 软件动态测试在抽样测试数据基础上执行程序并分析输出以发现缺陷的过程。测试质量依赖于测试数据(测试用例中的输入数据)。测试数据生成和测试结果分析都不仅工作量大,而且技术要求高。测试数据的生成策略主要包括白盒测试和黑盒测试两种,它们是动态测试技术的基本内容。还有一些其他测试技术,如程序变异、符号求值等。 ①白盒测试。按照程序内部逻辑结构和编码结构设计测试数据的测试方法,也称结构测试。测试者需了解程序的内部结构,但可以不考虑程序的需求规格说明。通常主要用于软件单元测试。有控制流测试和数据流测试两类技术。a.控制流测试:依据程序的控制流程图考虑测试用例,使某种控制结构在程序运行中得到执行,从而得到验证。b.数据流测试:使用控制流程图分析数据异常,从数据异常的角度确立测试路径选择准则。 ②黑盒测试。按照软件需求规格说明设计测试数据的测试方法。
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条