测试专用术语
- 格式:doc
- 大小:80.00 KB
- 文档页数:12
软件测试术语表Acceptance Testing--可接受性测试一般由用户/客户进行的确认是否可以接受一个产品的验证性测试。
actual outcome--实际结果被测对象在特定的条件下实际产生的结果。
Ad Hoc Testing--随机测试测试人员通过随机的尝试系统的功能,试图使系统中断。
algorithm--算法(1)一个定义好的有限规则集,用于在有限步骤内解决一个问题;(2)执行一个特定任务的任何操作序列。
algorithm analysis--算法分析一个软件的验证确认任务,用于保证选择的算法是正确的、合适的和稳定的,并且满足所有精确性、规模和时间方面的要求。
Alpha Testing--Alpha测试由选定的用户进行的产品早期性测试。
这个测试一般在可控制的环境下进行的。
analysis--分析(1)分解到一些原子部分或基本原则,以便确定整体的特性;(2)一个推理的过程,显示一个特定的结果是假设前提的结果;(3)一个问题的方法研究,并且问题被分解为一些小的相关单元作进一步详细研究。
anomaly--异常在文档或软件操作中观察到的任何与期望违背的结果。
application software--应用软件满足特定需要的软件。
architecture--构架一个系统或组件的组织结构。
ASQ--自动化软件质量(Automated Software Quality)使用软件工具来提高软件的质量。
assertion--断言指定一个程序必须已经存在的状态的一个逻辑表达式,或者一组程序变量在程序执行期间的某个点上必须满足的条件。
assertion checking--断言检查用户在程序中嵌入的断言的检查。
audit--审计一个或一组工作产品的独立检查以评价与规格、标准、契约或其它准则的符合程度。
audit trail--审计跟踪系统审计活动的一个时间记录。
Automated Testing--自动化测试使用自动化测试工具来进行测试,这类测试一般不需要人干预,通常在GUI、性能等测试中用得较多。
测试任务描述在软件的开发过程中每个版本都会经历四次测试任务,分别为:单元测试、集成测试、系统测试、验收测试,在这四次测试任务中,每次测试都有不同的测试方向和重点。
一、单元测试单元测试是软件开发过程中要进行的最基本的测试,属于白盒测试范围,一般情况下是在开发人员完成了某个单独模块的编码之后做的测试。
它的目的是检查软件编码的正确性以及一些规范性测试,站在开发人员的角度上来查找软件所存在的 BUG 并记录下产生BUG 的原因,以便开发人员进行修改。
这样可以在很大程度上减少集成以后而出现的BUG。
一旦编码完成,开发人员总是会迫切希望进行软件的集成工作,这样他们就能够看到实际的系统开始启动工作了。
这在外表上看来是一项明显的进步,而象单元测试会推迟对整个系统进行合并这种真正有意思的工作启动的时间。
这种开发步骤中,真实意义上的进步被软件合并后的外表上的进步取代了。
系统能够正常工作的可能性是很小的,更多的情况是充满了各式各样的 Bug。
现实的开发中,没有单元测试的软件常常会导致这样的结果,软件甚至无法运行。
更进一步的结果是大量的时间将被花费在本应该在单元测试里就完成的简单Bug 上面,在个别情况下,这些Bug 也许是琐碎和微不足道的,但是总的来说,他们会延长软件集成为一个系统的时间,而且当这个系统投入使用时也无法确保它能够可靠运行。
单元测试不仅仅是作为无错编码一种辅助手段在一次性的开发过程中使用,单元测试应该是可重复的,无论是在软件修改,或是移植到新的运行环境的过程中。
因此,所有的测试都必须在整个软件系统的生命周期中进行,也就是说每个版本的开发都需要经过单元测试,这样可以在以后的开发阶段减少很多不必要的麻烦。
单元测试的重点测试内容包括:源代码测试、命名规范测试、需求完整性测试、页面完整性测试、提示文本测试、页面脚本测试等。
二、集成测试集成测试也属于白盒测试范围,是在单元测试的基础上将软件的多个模块或者系统前后台合并之后进行的测试,也可以算是对单元测试修改进行的复审测试。
一、按测试类型中文名称英文名称1冒烟测试smoke testing2功能测试functional testing3UI测试user interface testing4性能测试performance testing5自动化测试automated testing6压力测试stress testing7负载测试load testing8并发测试concurrency testing9单元测试unit test10集成测试integration test11系统测试system test12验收测试acceptance testing13回归测试regression testing14alpha测试alpha testing(非公司内部用户在公司内部的模拟环境中测试)15gamma测试gamma testing(用户在实际使用环境中测试,开发者不在现场,又名现场测试)16黑盒测试black box testing17白盒测试white box testing18灰盒测试gray box testing19随机测试ad-hoc test20兼容性测试compatibility testing 21本地化测试localizational testing 22国际化测试international testing 23可移植性测试portability testing24引导测试pilot testing25安装测试installation testing26文档测试documentation testing 27配置测试configuration test28可靠性测试reliability test29容量测试volume test30安全性测试security test31探索性测试exploratory test32增量测试incremental test33接口测试interface testing34互操作性测试interoperability testing 35维护测试maintenance testing 36健壮性测试robustness testing37静态测试static testing38敏捷测试agile testing39自底向上测试bottom -up testing40穷尽测试exhaustive testing41确认测试confirmation testing42一致性测试conformance testing二、按测试过程1需求规格说明software-requirement specification 2测试规格说明test specification3阶段测试计划phase test plan4测试计划test plan5测试套件test suit6语句覆盖statement coverage7判定覆盖decision coverage8测试案例test case9需求矩阵requirement tracking matrix10入口准则entry criteria11出口准则exit criteria12预期结果expected outcome13实际结果actual outcome14正式评审formal review15非正式评审informal review16事件日志incident logging17输入input18输出output19结果outcome20基线baseline21模块module22运行环境operational environment 23优先级priority24交付物deliverable25评审人reviewer26测试周期test circle27测试数据test data28测试环境test environment29测试执行test execution30测试项test item31测试监控test monitoring32测试对象test object33测试报告test report34测试脚本test script35测试策略test strategy36客户端client37服务器server38浏览器browser三、按bug相关1缺陷bug2缺陷报告bug report3错误error4代码code5条件condition6缺陷跟踪defeat tracking7通过pass8失败failed9内存泄漏memory leak10路径path11风险risk12崩溃crush13调试debug14部署deployment15异常exception按工具类1回放replay2因果图cause - effect graph3编译器compiler4配置管理工具configuration management tool 5每日构建daily build6错误推测erro guessing7结构化查询语句structured query language 其它1能力成熟度模型capability maturity model 2质量控制quality control3质量保证quality assurance。
软件测试专业术语中英文对照AAcceptance testing : 验收测试Acceptance Testing:可接受性测试Accessibility test : 软体适用性测试actual outcome:实际结果Ad hoc testing : 随机测试Algorithm analysis : 算法分析algorithm:算法Alpha testing : α测试analysis:分析anomaly:异常application software:应用软件Application under test (AUT) : 所测试的应用程序Architecture : 构架Artifact : 工件ASQ:自动化软件质量(Automated Software Quality)Assertion checking : 断言检查Association : 关联Audit : 审计audit trail:审计跟踪Automated Testing:自动化测试BBackus-Naur Form:BNF范式baseline:基线Basic Block:基本块basis test set:基本测试集Behaviour : 行为Bench test : 基准测试benchmark:标杆/指标/基准Best practise : 最佳实践Beta testing : β测试Black Box Testing:黑盒测试Blocking bug : 阻碍性错误Bottom-up testing : 自底向上测试boundary value coverage:边界值覆盖boundary value testing:边界值测试Boundary values : 边界值Boundry Value Analysis:边界值分析branch condition combination coverage:分支条件组合覆盖branch condition combination testing:分支条件组合测试branch condition coverage:分支条件覆盖branch condition testing:分支条件测试branch condition:分支条件Branch coverage : 分支覆盖branch outcome:分支结果branch point:分支点branch testing:分支测试branch:分支Breadth Testing:广度测试Brute force testing: 强力测试Buddy test : 合伙测试Buffer : 缓冲Bug : 错误Bug bash : 错误大扫除bug fix : 错误修正Bug report : 错误报告Bug tracking system: 错误跟踪系统bug:缺陷Build : 工作版本(内部小版本)Build Verfication tests(BVTs): 版本验证测试Build-in : 内置CCapability Maturity Model (CMM): 能力成熟度模型Capability Maturity Model Integration (CMMI): 能力成熟度模型整合capture/playback tool:捕获/回放工具Capture/Replay Tool:捕获/回放工具CASE:计算机辅助软件工程(computer aided software engineering)CAST:计算机辅助测试cause-effect graph:因果图certification :证明change control:变更控制Change Management :变更管理Change Request :变更请求Character Set : 字符集Check In :检入Check Out :检出Closeout : 收尾code audit :代码审计Code coverage : 代码覆盖Code Inspection:代码检视Code page : 代码页Code rule : 编码规范Code sytle : 编码风格Code Walkthrough:代码走读code-based testing:基于代码的测试coding standards:编程规范Common sense : 常识Compatibility Testing:兼容性测试complete path testing :完全路径测试completeness:完整性complexity :复杂性Component testing : 组件测试Component:组件computation data use:计算数据使用computer system security:计算机系统安全性Concurrency user : 并发用户Condition coverage : 条件覆盖condition coverage:条件覆盖condition outcome:条件结果condition:条件configuration control:配置控制Configuration item : 配置项configuration management:配置管理Configuration testing : 配置测试conformance criterion:一致性标准Conformance Testing:一致性测试consistency :一致性consistency checker:一致性检查器Control flow graph : 控制流程图control flow graph:控制流图control flow:控制流conversion testing:转换测试Core team : 核心小组corrective maintenance:故障检修correctness :正确性coverage :覆盖率coverage item:覆盖项crash:崩溃criticality analysis:关键性分析criticality:关键性CRM(change request management): 变更需求管理Customer-focused mindset : 客户为中心的理念体系Cyclomatic complexity : 圈复杂度Ddata corruption:数据污染data definition C-use pair:数据定义C-use使用对data definition P-use coverage:数据定义P-use覆盖data definition P-use pair:数据定义P-use使用对data definition:数据定义data definition-use coverage:数据定义使用覆盖data definition-use pair :数据定义使用对data definition-use testing:数据定义使用测试data dictionary:数据字典Data Flow Analysis : 数据流分析data flow analysis:数据流分析data flow coverage:数据流覆盖data flow diagram:数据流图data flow testing:数据流测试data integrity:数据完整性data use:数据使用data validation:数据确认dead code:死代码Debug : 调试Debugging:调试Decision condition:判定条件Decision coverage : 判定覆盖decision coverage:判定覆盖decision outcome:判定结果decision table:判定表decision:判定Defect : 缺陷defect density : 缺陷密度Defect Tracking :缺陷跟踪Deployment : 部署Depth Testing:深度测试design for sustainability :可延续性的设计design of experiments:实验设计design-based testing:基于设计的测试Desk checking : 桌前检查desk checking:桌面检查Determine Usage Model : 确定应用模型Determine Potential Risks : 确定潜在风险diagnostic:诊断DIF(decimation in frequency) : 按频率抽取dirty testing:肮脏测试disaster recovery:灾难恢复DIT (decimation in time): 按时间抽取documentation testing :文档测试domain testing:域测试domain:域DTP DETAIL TEST PLAN详细确认测试计划Dynamic analysis : 动态分析dynamic analysis:动态分析Dynamic Testing:动态测试Eembedded software:嵌入式软件emulator:仿真End-to-End testing:端到端测试Enhanced Request :增强请求entity relationship diagram:实体关系图Encryption Source Code Base:加密算法源代码库Entry criteria : 准入条件entry point :入口点Envisioning Phase : 构想阶段Equivalence class : 等价类Equivalence Class:等价类equivalence partition coverage:等价划分覆盖Equivalence partition testing : 等价划分测试equivalence partition testing:参考等价划分测试equivalence partition testing:等价划分测试Equivalence Partitioning:等价划分Error : 错误Error guessing : 错误猜测error seeding:错误播种/错误插值error:错误Event-driven : 事件驱动Exception handlers : 异常处理器exception:异常/例外executable statement:可执行语句Exhaustive Testing:穷尽测试exit point:出口点expected outcome:期望结果FExploratory testing : 探索性测试Failure : 失效Fault : 故障fault:故障feasible path:可达路径feature testing:特性测试Field testing : 现场测试FMEA:失效模型效果分析(Failure Modes and Effects Analysis)FMECA:失效模型效果关键性分析(Failure Modes and Effects Criticality Analysis)Framework : 框架FTA:故障树分析(Fault Tree Analysis)functional decomposition:功能分解Functional Specification :功能规格说明书Functional testing : 功能测试Functional Testing:功能测试GG11N(Globalization) : 全球化Gap analysis : 差距分析Garbage characters : 乱码字符glass box testing:玻璃盒测试Glass-box testing : 白箱测试或白盒测试Glossary : 术语表GUI(Graphical User Interface): 图形用户界面HHard-coding : 硬编码Hotfix : 热补丁II18N(Internationalization): 国际化Identify Exploratory Tests –识别探索性测试IEEE:美国电子与电器工程师学会(Institute of Electrical and Electronic Engineers)Incident 事故Incremental testing : 渐增测试incremental testing:渐增测试infeasible path:不可达路径input domain:输入域Inspection : 审查inspection:检视installability testing:可安装性测试Installing testing : 安装测试instrumentation:插装instrumenter:插装器Integration :集成Integration testing : 集成测试interface : 接口interface analysis:接口分析interface testing:接口测试interface:接口invalid inputs:无效输入isolation testing:孤立测试Issue : 问题Iteration : 迭代Iterative development: 迭代开发Jjob control language:工作控制语言Job:工作KKey concepts : 关键概念Key Process Area : 关键过程区域Keyword driven testing : 关键字驱动测试Kick-off meeting : 动会议LL10N(Localization) : 本地化Lag time : 延迟时间LCSAJ:线性代码顺序和跳转(Linear Code Sequence And Jump)LCSAJ coverage:LCSAJ覆盖LCSAJ testing:LCSAJ测试Lead time : 前置时间Load testing : 负载测试Load Testing:负载测试Localizability testing: 本地化能力测试Localization testing : 本地化测试logic analysis:逻辑分析logic-coverage testing:逻辑覆盖测试MMaintainability : 可维护性maintainability testing:可维护性测试Maintenance : 维护Master project schedule :总体项目方案Measurement : 度量Memory leak : 内存泄漏Migration testing : 迁移测试Milestone : 里程碑Mock up : 模型,原型modified condition/decision coverage:修改条件/判定覆盖modified condition/decision testing :修改条件/判定测试modular decomposition:参考模块分解Module testing : 模块测试Monkey testing : 跳跃式测试Monkey Testing:跳跃式测试mouse over:鼠标在对象之上mouse leave:鼠标离开对象MTBF:平均失效间隔实际(mean time between failures)MTP MAIN TEST PLAN主确认计划MTTF:平均失效时间(mean time to failure)MTTR:平均修复时间(mean time to repair)multiple condition coverage:多条件覆盖mutation analysis:变体分析NN/A(Not applicable) : 不适用的Negative Testing : 逆向测试, 反向测试, 负面测试negative testing:参考负面测试Negative Testing:逆向测试/反向测试/负面测试off by one:缓冲溢出错误non-functional requirements testing:非功能需求测试nominal load:额定负载N-switch coverage:N切换覆盖N-switch testing:N切换测试N-transitions:N转换OOff-the-shelf software : 套装软件operational testing:可操作性测试output domain:输出域Ppaper audit:书面审计Pair Programming : 成对编程partition testing:分类测试Path coverage : 路径覆盖path coverage:路径覆盖path sensitizing:路径敏感性path testing:路径测试path:路径Peer review : 同行评审Performance : 性能Performance indicator: 性能(绩效)指标Performance testing : 性能测试Pilot : 试验Pilot testing : 引导测试Portability : 可移植性portability testing:可移植性测试Positive testing : 正向测试Postcondition : 后置条件Precondition : 前提条件precondition:预置条件predicate data use:谓词数据使用predicate:谓词Priority : 优先权program instrumenter:程序插装progressive testing:递进测试Prototype : 原型Pseudo code : 伪代码pseudo-localization testing:伪本地化测试pseudo-random:伪随机QQC:质量控制(quality control)Quality assurance(QA): 质量保证Quality Control(QC) : 质量控制RRace Condition:竞争状态Rational Unified Process(以下简称RUP):瑞理统一工艺Recovery testing : 恢复测试recovery testing:恢复性测试Refactoring : 重构regression analysis and testing:回归分析和测试Regression testing : 回归测试Release : 发布Release note : 版本说明release:发布Reliability : 可靠性reliability assessment:可靠性评价reliability:可靠性Requirements management tool: 需求管理工具Requirements-based testing : 基于需求的测试Return of Investment(ROI): 投资回报率review:评审Risk assessment : 风险评估risk:风险Robustness : 强健性Root Cause Analysis(RCA): 根本原因分析Ssafety critical:严格的安全性safety:(生命)安全性Sanity testing : 健全测试Sanity Testing:理智测试Schema Repository : 模式库Screen shot : 抓屏、截图SDP:软件开发计划(software development plan)Security testing : 安全性测试security testing:安全性测试security.:(信息)安全性serviceability testing:可服务性测试Severity : 严重性Shipment : 发布simple subpath:简单子路径Simulation : 模拟Simulator : 模拟器SLA(Service level agreement): 服务级别协议SLA:服务级别协议(service level agreement)Smoke testing : 冒烟测试Software development plan(SDP): 软件开发计划Software development process: 软件开发过程software development process:软件开发过程software diversity:软件多样性software element:软件元素software engineering environment:软件工程环境software engineering:软件工程Software life cycle : 软件生命周期source code:源代码source statement:源语句Specification : 规格说明书specified input:指定的输入spiral model :螺旋模型SQAP SOFTWARE QUALITY ASSURENCE PLAN 软件质量保证计划SQL:结构化查询语句(structured query language)Staged Delivery:分布交付方法state diagram:状态图state transition testing :状态转换测试state transition:状态转换state:状态Statement coverage : 语句覆盖statement testing:语句测试statement:语句Static Analysis:静态分析Static Analyzer:静态分析器Static Testing:静态测试statistical testing:统计测试Stepwise refinement : 逐步优化storage testing:存储测试Stress Testing : 压力测试structural coverage:结构化覆盖structural test case design:结构化测试用例设计structural testing:结构化测试structured basis testing:结构化的基础测试structured design:结构化设计structured programming:结构化编程structured walkthrough:结构化走读stub:桩sub-area:子域Summary:总结SVVP SOFTWARE Vevification&Validation PLAN:软件验证和确认计划symbolic evaluation:符号评价symbolic execution:参考符号执行symbolic execution:符号执行symbolic trace:符号轨迹Synchronization : 同步Syntax testing : 语法分析system analysis:系统分析System design : 系统设计system integration:系统集成System Testing : 系统测试TTC TEST CASE 测试用例TCS TEST CASE SPECIFICATION 测试用例规格说明TDS TEST DESIGN SPECIFICATION 测试设计规格说明书technical requirements testing:技术需求测试Test : 测试test automation:测试自动化Test case : 测试用例test case design technique:测试用例设计技术test case suite:测试用例套test comparator:测试比较器test completion criterion:测试完成标准test coverage:测试覆盖Test design : 测试设计Test driver : 测试驱动test environment:测试环境test execution technique:测试执行技术test execution:测试执行test generator:测试生成器test harness:测试用具Test infrastructure : 测试基础建设test log:测试日志test measurement technique:测试度量技术Test Metrics :测试度量test procedure:测试规程test records:测试记录test report:测试报告Test scenario : 测试场景Test Script:测试脚本Test Specification:测试规格Test strategy : 测试策略test suite:测试套Test target : 测试目标Test ware : 测试工具Testability : 可测试性testability:可测试性Testing bed : 测试平台Testing coverage : 测试覆盖Testing environment : 测试环境Testing item : 测试项Testing plan : 测试计划Testing procedure : 测试过程Thread testing : 线程测试time sharing:时间共享time-boxed : 固定时间TIR test incident report 测试事故报告ToolTip:控件提示或说明top-down testing:自顶向下测试TPS TEST PEOCESS SPECIFICATION 测试步骤规格说明Traceability : 可跟踪性traceability analysis:跟踪性分析traceability matrix:跟踪矩阵Trade-off : 平衡transaction:事务/处理transaction volume:交易量transform analysis:事务分析trojan horse:特洛伊木马truth table:真值表TST TEST SUMMARY REPORT 测试总结报告Tune System : 调试系统TW TEST WARE :测试件UUsability Testing:可用性测试Usage scenario : 使用场景User acceptance Test : 用户验收测试User database :用户数据库User interface(UI) : 用户界面User profile : 用户信息User scenario : 用户场景VV&V (Verification & Validation) : 验证&确认validation :确认verification :验证version :版本Virtual user : 虚拟用户volume testing:容量测试VSS(visual source safe):VTP Verification TEST PLAN验证测试计划VTR Verification TEST REPORT验证测试报告WWalkthrough : 走读Waterfall model : 瀑布模型White box testing : 白盒测试Work breakdown structure (WBS) : 任务分解结构ZZero bug bounce (ZBB) : 零错误反弹。
ate测试相关术语
ATE测试相关的术语有:
1、ATE:全称是Automatic Test Equipment,是自动化测试设备的意思。
在半导体产业中,它指的是用于检测集成电路功能完整性的自动测试设备。
2、DUT:全称是Device Under Test,指的是待测设备,通常在半导体行业中指的是电子元器件或芯片。
3、PIB:全称是Prober Interface Board,指的是介于测试机探针台和半导体晶圆或芯片之间的接口板。
4、DIB:全称是Device Interface Board,指的是设备接口板,介于测试机和设备之间。
5、PDP:全称是Prober docking plate,指的是探针台对接板。
6、Handler:这是一个系统或设备,可编程逻辑控制器(PLC)或电脑通过Handler发送指令,然后Handler执行这些指令并将结果返回给使用者。
测试常见术语(中英文对比附解析)Acceptance Testing--可接受性测试一般由用户/客户进行的确认是否可以接受一个产品的验证性测试。
actual outcome--实际结果被测对象在特定的条件下实际产生的结果。
Ad Hoc Testing--随机测试测试人员通过随机的尝试系统的功能,试图使系统中断。
algorithm--算法(1)一个定义好的有限规则集,用于在有限步骤内解决一个问题;(2)执行一个特定任务的任何操作序列。
algorithm analysis--算法分析一个软件的验证确认任务,用于保证选择的算法是正确的、合适的和稳定的,并且满足所有精确性、规模和时间方面的要求。
Alpha Testing--Alpha测试由选定的用户进行的产品早期性测试。
这个测试一般在可控制的环境下进行的。
analysis--分析(1)分解到一些原子部分或基本原则,以便确定整体的特性;(2)一个推理的过程,显示一个特定的结果是假设前提的结果;(3)一个问题的方法研究,并且问题被分解为一些小的相关单元作进一步详细研究。
anomaly--异常在文档或软件操作中观察到的任何与期望违背的结果。
application software--应用软件满足特定需要的软件。
architecture--构架一个系统或组件的组织结构。
ASQ--自动化软件质量(Automated Software Quality)使用软件工具来提高软件的质量。
assertion--断言指定一个程序必须已经存在的状态的一个逻辑表达式,或者一组程序变量在程序执行期间的某个点上必须满足的条件。
assertion checking--断言检查用户在程序中嵌入的断言的检查。
audit--审计一个或一组工作产品的独立检查以评价与规格、标准、契约或其它准则的符合程度。
audit trail--审计跟踪系统审计活动的一个时间记录。
Automated Testing--自动化测试使用自动化测试工具来进行测试,这类测试一般不需要人干预,通常在GUI、性能等测试中用得较多。
30秒坐站测试指导术语
30秒坐站测试(30-Second Sitting-Rising Test,简称30S SRT)是一种
评估人体下肢肌肉力量和关节灵活性的测试方法。
以下是该测试的指导术语:
1. 起始姿势:坐在一张高度适中的椅子上,双脚平放在地面,与肩同宽或略宽。
双手交叉放于胸前。
2. 测试动作:听到开始指令后,快速起立站直,然后坐下。
这个动作需要反复进行,在30秒内尽量多次完成起立和坐下。
3. 注意事项:
保持动作流畅,不要停顿或中断。
尽量保持腰背挺直,避免过度弯腰或使用手臂力量辅助。
如果在测试过程中出现不适或疼痛,请立即停止。
4. 记录结果:记录在30秒内完成起立和坐下的次数。
可重复测试多次以获取更准确的结果。
请注意,30秒坐站测试仅适用于评估下肢肌肉力量和关节灵活性,对于其
他健康状况或疾病诊断,请咨询专业医生或医疗机构的意见。
测试专业术语
测试专业术语是指在软件测试领域中使用的一些专业术语,包括但不限于以下几个方面:
1. 测试用例:测试用例是一个测试计划的最小单元,它描述了
一个特定功能或场景的输入、输出和预期结果。
2. 测试计划:测试计划是一个文档,描述了测试的范围、目标、资源、时间表和测试策略等。
3. 缺陷:缺陷是指在软件中发现的任何错误、缺陷或故障,这
些问题需要被报告、跟踪和解决。
4. 自动化测试:自动化测试是指使用自动化测试工具来执行测
试脚本,以验证软件的功能和性能。
5. 白盒测试:白盒测试是指通过检查软件内部代码和结构来测
试软件的正确性和可靠性。
6. 黑盒测试:黑盒测试是指通过检查软件的外部功能和接口来
测试软件的正确性和可靠性。
7. 冒烟测试:冒烟测试是指在软件开发周期中的早期阶段,测
试人员对软件进行基本的功能测试,以验证软件是否可以进行更详细的测试。
8. 集成测试:集成测试是指在软件开发周期中的中期阶段,测
试人员对软件进行测试,以确保不同模块之间的交互和协作是正确的。
9. 端到端测试:端到端测试是指测试软件的完整过程,包括从
用户输入到输出的所有步骤。
以上是测试专业术语的一些常见概念,了解这些术语可以帮助测试人员更好地理解和执行测试任务,提高软件质量和用户体验。
测试的有关术语:1.水洗缩水率:Dimensional Stability to Washing2.每次附加水洗:Each Additional Wash Cycle3.干洗缩水率:Dimensional Stability to Commercial4.每次附加干洗:Each Additional Dry cleaning Cycle5.蒸汽热压的尺寸稳定性:Dimensional Stability to Steam Press6.汽蒸尺寸稳定性:Dimensional Stability to Free Steam7.皮革专业干洗尺寸稳定性:Dimensional Stability to Professional Leather Clean8.洗涤后外观:Appearance After Laundering9.缩水后外观:Appearance with shrinkage Performed10.熨烫后外观:Hand Ironing11.蒸汽压熨烫:Steam Pressing Iron12.老化/贮存后外观:Aging/Preconditioning Test13.成衣配件附加评估:Additional Evaluation on Add’1 Garment Components1.加速水洗色牢度:Washing2.摩擦色牢度:Crocking/Rubbing3.汗浸色牢度:Perspiration4.日晒色牢度:Light5.水浸色牢度:Water(Static Wetting)6.氯池水色牢度:Chlorinated Pool Water7.海水浸色牢度:Sea Water8.氯漂色牢度:Chlorine Bleach9.非氯漂色牢度:Non-Chlorine Bleach10.耐干洗色牢度:Dry cleaning11.臭氧色牢度:Ozone12.烟熏色牢度:Burnt Gas Fumes13.实际水洗色牢度:Actual Laundering14.磨白色牢度:Color Change Due to Flat Abrasion(Frosting)15.唾液色牢度:Saliva16.汗液和唾液色牢度:Perspiration and Saliva17.干热色牢度:Dry Heat18.热压色牢度:Hot Pressing19.熨烫色牢度:Hand Ironing20.酚黄测试:Phenolic Yellowing21.贮存中染料转移度:Dye Transfer in Storage22.水斑色牢度:Water Spotting23.酸斑色牢度:Acid Spotting24.碱斑色牢度:Alkaline Spotting25.印花耐久性测试:Print Durability1.拉伸强力:Tensile Strength2.撕裂强力:Tear Strength3.撕裂强力(单舌法):Tongue Test4.粘合强力:Bonded Strength5.顶破强力:Bursting Strength6.接缝断裂强力:Seam Breaking Strength(Per Seam)7.接缝拉伸性:Seam Stretch Ability(Per Seam)8.成衣接缝强力:Garment Seam Strength(Per Seam)9.接缝脱缝滑移强力:Seam Slippage10.单线强力:Single Thread Strength11.耐磨性:Abrasion Resistance12.抗起毛起球性:Pilling Resistance13.织物硬挺度:Stiffness14.折痕回复性:Crease Recovery Angle15.抗勾丝性:Snagging Resistance16.弹性恢复性:Stretch & Recovery17.抗水性:Water Repellency18.防水性:Water Resistance19.湿度性能:Moisture Management20.拒油性:Oil Repellency21.易去污性:Soil Release22.燃烧性:Flammability1.织物密度:Fabric Count of Woven Fabric2.线圈密度:Knit Fabric Count3.纱支:Yarn Size4.组织结构:Fabric Type/Type of Weave—简单结构:Simple Structure;复杂结构:Complex Structure5.纱线捻度:Twist per inch6.织物幅宽:Fabric Width7.织物重量:Fabric Weight8.衣服重量:Total Garment Weight9.织物歪斜和扭曲:Skew or Bow, spirality1.拉链强度(每一部分):Zipper Strength (per section)2.拉链往复使用性能:Zipper reciprocating test3.魔术贴强度:Strength of Velcro Tape; A)剪切力:Sheer; B)撕离力:Peeling4.纽扣抗撞击力:Impact Resistance of Buttons5.纽扣拉力试验:Button Center Strength6.配料拉力试验(纽扣、掀钮或其它附件):Component Attachment Strength(Buttons, Snaps, or other accessories)7.掀钮开启闭合力(每5个):Snap Operability (per 5 sets)8.拉链扭转强力:Zipper Torque Strength1.纤维成分:Fiber Composition2.羽绒测试:Feather & Down Tests。
检测技术专业术语解释1. 检测原理:指检测过程中所依据的基本物理、化学、生物学等原理。
例如,电化学检测依据电化学反应原理,光学检测依据光的吸收、反射、干涉等原理。
2. 检测方法:指根据特定的检测原理,采用一定的技术手段和操作程序,对被检测对象进行测量或观察,以获取所需信息的方法。
例如,化学分析法、光谱分析法、色谱分析法等。
3. 信号处理:指将获取的原始信号转换成可处理和分析的信号的过程。
信号处理方法包括滤波、放大、调制、解调、去噪、特征提取等。
4. 误差分析:指对测量结果中不确定度或误差来源的分析。
误差分析有助于了解测量结果的可靠性和精确度,并指导改进测量方法。
5. 测量系统:指用于实现测量过程的硬件和软件系统。
测量系统包括传感器、信号调理器、数据采集器、计算机等组成。
6. 传感器技术:指用于将被测物理量或化学量转换成可测信号的装置或器件的技术。
传感器技术是检测技术中的重要组成部分,其性能直接影响测量结果的准确性和可靠性。
7. 校准与标定:校准是在特定条件下,用已知标准量值对测量系统或传感器进行赋值,并比较赋值结果与标准量值的过程;标定则是根据校准结果,对测量系统或传感器的误差进行补偿,以提高测量准确度的过程。
8. 数据分析:指对采集到的数据进行分析和处理的过程。
数据分析方法包括统计方法、信号处理方法、机器学习方法等。
数据分析是检测技术中的重要环节,通过数据分析可以提取出有用的信息,并对被测对象进行评估和判断。
9. 检测标准:指为保证检测结果的准确性和可靠性而制定的统一规范和准则。
检测标准包括国家检测标准、行业检测标准和企业检测标准等。
检测标准的制定有利于促进技术的进步和统一,提高检测质量和效益。
10. 应用领域:指检测技术的应用范围和领域。
检测技术的应用领域非常广泛,包括工业生产、环境保护、医疗卫生、食品药品安全、科研实验等。
在不同的应用领域中,检测技术的作用和意义也有所不同。
测试专用术语作者: admin 发布日期: 2006-5-09 查看数: 547 出自:A 色牢度试验项目COLOUR FASTNESS TESTS皂洗牢度washing摩擦牢度rubbing/crocking汗渍牢度perspiration干洗牢度drycleaning光照牢度light水渍牢度water氯漂白chlorine bleach spotting非氯漂白non-chlorine bleach漂白bleaching实际洗涤(水洗一次)actual laundering (one wash)氯化水chlorinated water含氯泳池水chlorinated pool water海水sea-water酸斑acid spotting碱斑alkaline spotting水斑water spotting有机溶剂organic solvent煮呢potting湿态光牢度wet light染料转移dye transfer热(干态)dry heat热压hot pressing印花牢度print durability臭氧ozone烟熏burnt gas fumes由酚类引起的黄化phenolic yellowing唾液及汗液saliva and perspirationB 尺寸稳定性(缩水率)及有关试验项目(织物和成衣)DIMENSIONAL STABILITY (SHRINKAGE) AND RELATED TESTS (FABRIC & GARMENT)皂洗尺寸稳定性dimensional stability to washing (washing shrinkage)洗涤/手洗后的外观appearance after laundering / hand wash热尺寸稳定性dimensional stability to heating熨烫后外观appearance after ironing商业干洗稳定性dimensional stability to commercial drycleaning (drycleaning shrinkage) 商业干洗后外观(外观保持性)appearance after commercial drycleaning (appearance retention)蒸汽尺寸稳定性dimensional stability to steaming松弛及毡化dimensional stabilty to relaxation and felting缝纫线形稳定性dimensional stability for sewing threadC 强力试验项目STRENGTH TESTS拉伸强力tensile strength撕破强力tear strength顶破强力bursting strength接缝性能seam properties双层织物的结合强力bonding strength of laminated fabric涂层织物的粘合强力adhesion strength of coated fabric单纱强力single thread strength缕纱强力lea strength钩接强力loop strength纤维和纱的韧性tenacity of fibres and yarnD 织物机构测试项目FABRIC CONSTRUCTION TESTS织物密度(机织物) threads per unit length (woven fabric construction)织物密度(针织物) stitch density (knittted fabric)纱线支数counts of yarn纱线纤度(原样)denier counts as received织物幅宽fabric width织物克重fabric weight针织物线圈长度loop length of knitted fabric纱线卷曲或织缩率crimp or take-up of yarn割绒种类type of cut pile织造种类type of weave梭织物纬向歪斜度distortion in bowed and skewed fabrics (report as received and after one wash)圈长比terry to ground ratio织物厚度fabric thicknessE 成分和其他分析试验项目COMPOSITION AND OTHER ANALYTICAL TESTS纤维成分fibre composition染料识别dyestuff identification靛蓝染料纯度purity of indigo含水率moisture content可萃取物质extractable matter填充料和杂质含量filling and foreign matter content淀粉含量starch content甲醛含量formaldehyde content甲醛树脂presence of formaldehyde resin棉丝光度mercerisation in cottonPH值PH value水能性absorbanceF 可燃性试验项目FLAMMABILITY TESTS普通织物的燃烧性能flammability of general clothing textiles 布料的燃烧速率(45。
角)burning rate of cloth (45。
angle) 瑞典成衣燃烧性能Sweden fire properties of apparel textileG 织物性能试验项目FABRIC FERFORMANCE TESTS耐磨性abrasion resistance抗起毛起球性pilling resistance拒水性water repellency抗水性water resistance折痕回复力wrinkle recovery布料硬挺度fabric stiffness弹性及回复力stretch & recoveryH 羽绒试验项目FEATHER & DOWN THERMAL TESTS羽绒成分分析composition analysis膨松度filling power杂色毛和绒的比例black tip填充料的净重量new weight (conditioned) of filling material 含水率moisture content溶剂可溶物的测定determination of solvent solube酸度acidity好氧指数oxygen number清洁度turbidity test羽绒布防漏性penetration resistance of cloth to feather & downI 成衣附件试验项目GARMENT ACCESSORY TESTS (LACE, ZIPPER, BUTTON, BUCKLE, ETC.)洗涤后外观appearanc after laundering贮存后外观appearance after storage耐烫性能resistance to ironing拉链强力zipper strength拉链的往复性reciprocating test拉链耐用性durability of zipper拉链的使用性能operability of zipper魔术贴剪力shear strength of hooks & loops fastener (velcro tape)魔术贴撕离力peeling strength of hooks & loops fastener (velcro tape)魔术贴分合consecutive adhere/ separation exercising on hooks & loops fastener (velcro tape)金属抛光物的锈蚀/变色试验corrosion / tarnish test on metallic finishes按钮分开强力unsnapping og snap fasteners金属钮扣、铆钮的紧固试验security of metallics buttons, rivets, ets.按钮的紧固试验security of snap button钮扣强力strength of buttons耐洗液腐蚀性resistance to wash liquor耐干洗溶剂腐蚀性resistance to drycleaning solvents钮扣撞击测试button impact test钮扣拉力试验button tension test钮扣钮力试验button torque test按钮附着力snap attachment strength装饰物附着力trim attachment strengthJ 其他纺织品测试项目OTHER TEXTILE TESTS适当试验后推荐护理标签care instruction/label recommendation after appropriate testing (testing charges excluded)成衣尺寸测量garment size measurement硫化染料染色的纺织品的加速老化accelerated ageing of sulphur-dyed textiles色差判定colour difference assessmentK 纤维和纱的试验项目FIBRE & TESTS短纤维长度fibre staple length线形密度linear density纤维直径fibre diameter单根纤维强力single fibre strength纤维韧性tenacity of fibre纱支yarn count纱线纤度(原样)denier count as received连续或非连续纤维的识别identification of continuous/ discontinuous fibres每卷经纱长length of thread per roll纱线净重net weight of thread单纱强力single thread strength绞纱强力lea strength线圈强力loop strength纱线韧性tenacity of yarn纱捻度twist per unitL 填充棉试验BATTING TESTS重量weight厚度thickness纤维含量fibre content树脂含量resin content压缩与回复试验compresssion and resilience test样品分析前准备sample dissection for analysis preparation皂洗尺寸稳定性dimensional stability to washing机洗/水洗后的外观appearance after laundering / hand washM 地毯试验项目CARPET TESTS摩擦色牢度colour fastness to rubbing光照色牢度colour fastness to light水渍色牢度colour fastness to water毛束联结牢度tuft withdrawal force (tuft bind)毛束经密度pitches per unit length毛束纬密度rows per unit length底布密度threads per unit length of backing单位面积重量weight per unit area表面毛绒密度(只做单层毛毯)surface pile density (single level pile carpet only) 起绒纱股数ply of pile yarn割绒种类type of cut pile毛绒或毛圈长度pile or loop length毛绒或底部的纤维成分fibre composition of pile & back以下是测试相关方面:外包装bale箱carton件package色号colour number花号design number批号lot number唛头marks装箱单packing list漏验omisson of examination漏验率percentage of omisson of examination 复验re-inspection索赔claim indemnity毛重gross weight净重net weight外观质量appearance quality内在质量inherent quality外观疵点appearance技术要求technical requirement感观检验subjective inspection取样samoling品质检验单inspection certificate for quality检验证书inspection certificate织物重量fabric weight断裂强力breaking strength断裂强度breaking tenacity缝纫强力seam strength染色牢度colour fasteness耐日晒色牢度colour fasteness to sunlight耐磨擦色牢度colour fasteness to rubbing汁渍色牢度colour fasteness to perspiration耐熨烫色牢度colour fasteness to ironing耐干洗色牢度colour fasteness to dry cleaning 灰色样卡grey scale沾色样卡grey scale for staining纤维含量fibre content释放甲醛含量releasable for maldehyde content 防蛀性insect resistance防污性soil resistance防雨性rain proofness织物厚度fabric thickness透气性air permeability色差chromatic difference1. 纤维含量Fibre composition(AATCC 20A-2000)折合回潮重量Based on moisture regain weight100% Polyester2. 水洗尺寸变化率(%)Dimensional stability to washing ( 10 minutes mechanical wash at 140゜F)一次洗涤后After the 1-RD wash 三次洗涤后After the 3-RD wash经向Warp -2.2 -2.6伟向Weft -0.8 -1.1备注remark:(+)表示尺寸扩张means extension (-) 表示尺寸收缩means shrinkage (neg) 表示尺寸变化可以忽略means negligible3.洗后外观Appearance after wash (lab test procedure SLSHA-T-TMDD04-98,5 minutes hand wash at 80゜F,in 0.073% AATCC 1993 detergent solution and followed by line dry): 三次水洗后After the 3-RD wash观测结果Observation:洗涤样无明显褪色现象No obvious fading was found on the washed sample.洗涤样外观变化可以接受The general appearance of the washed sample was acceptable.4.耐洗色牢度Colour fastness to washing(class)(AATCC 61-2003 Test NO.2A 49℃45min):变色Colour change 4沾色Staining 醋酯Acetate 4棉Cotton 4锦纶Nylon 3-4涤纶Polyester 4腈纶Acrylic 4-5羊毛Wool 45.耐摩擦色牢度Colour fastness to crocking(class)(AATCC 8-2001)干Dry 4湿Wet 3-46. 耐氯漂色牢度Colour fastness to chlorine bleach(class)变色Colour change 47. 耐非氯漂色牢度Colour fastness to Non-chlorine bleach(class)(SLSHA-T-TMDF 25-98,lab test method soaking in 2.5% Clorox 2 solution at 105゜F,for one minute): 变色Colour change 48.密度Threads per unit length (ASTM D3775-2003)每厘米per centimeter 每英寸per inch经向warp 22.5 57.0纬向weft 22.5 57.09.纱支Counts of yarn(ASTM D1059-2001)经向warp 320.6 denier纬向weft 319.6 denier10.克重Weight per unit area(ASTM D3776-1996(2002),option C)177.5g/m2(5.2oz/yd2)11.箱式起球Pilling Resistance(Class)(TM 152-1980)412.耐光色牢度Colour fastness to artifical light (class) (AATCC 16-2003)变色Colour change 413.缝口纰裂Determination of seam slippage in fabric(PrEN ISO 13936-2 ;Fabric weight≤220g/m2-load applied 60 ,NewtonFabricweight>220g/m2-load applied 120 NewtonMaximum seam opening 6 mm)Warp:1mmWeft:2mm14.透气性AIR PERMEABILITY(GB/T 5453-1997 eqv ISO 9237:1995)7.4(mm/s)15.甲醛含量Formaldehyde Content(AATCC 112-1998)25.3 ppm16.接缝强力Seam Slippage (N) (GB/T13773-1992 )经Warp 250.6(56.3lbs)纬Weft 265.2(59.6lbs)17.撕破强力Seam Slippage (N) (GB/T3917.2-1997 )经Warp 68.8(15.5lbs)纬Weft 72.8(16.4Ibs)18.耐汗渍色牢度Colour fastness to perspiration(class) (AATCC 6-1994)变色Colour change 4沾色Staining 醋酯Acetate 4棉Cotton 4-5锦纶Nylon 4涤纶Polyester 4腈纶Acrylic 4-5羊毛Wool 419. 耐水色牢度Colour fastness to water(class) (AATCC 107-1997)变色Colour change 4沾色Staining 醋酯Acetate 3-4棉Cotton 4锦纶Nylon 3-4涤纶Polyester 4腈纶Acrylic 4羊毛Wool 420. 白度whiteness (AATCC 110-1995)常用纺织纤维燃烧特征作者: admin 发布日期: 2006-5-26 查看数: 136 出自:纤维近焰时现象在焰中离焰以后嗅觉灰烬形状棉近焰即燃、燃烧较快,有余辉燃纸味极少、柔软、黑色或灰色毛熔离火焰,熔并燃难续燃,会自熄,烧羽毛味,易碎、脆,黑色丝熔离火焰,燃时有丝丝声,难续燃,会自熄,且燃时飞溅、烧羽毛味,易碎、脆,黑色麻近焰即燃、燃时有爆裂声,续燃冒烟,有余辉,同棉粘胶近焰即燃、燃烧、续燃极快无余辉、烧纸夹杂化学品味除无光者外均无灰,间有少量黑色灰。