文档库 最新最全的文档下载
当前位置:文档库 › 完整版软件测试常用英语.doc

完整版软件测试常用英语.doc

完整版软件测试常用英语.doc
完整版软件测试常用英语.doc

Actual Fix Time 实际修改时间Assigned To 被分配给

Closed in Version 被关闭的版本Closing Date 关闭日期

Defect ID 缺陷编号

Description 描述

Detected By 被(谁)发现

Detected in Version 被发现的版本Detected on Date 被发现的日期Estimated Fix Time 估计修改的时间Modified 修正

Planned Closing Version计划关闭的版本Priority 优先级

Project 项目

R&D Comments 研发人员备注Reproducible 可重现

Severity 严重程度

Status 状态

Summary 概要

Creation Date 创建日期

Description 描述

Designer 设计人员

Estimated DevTime 估计设计和生成测试的时间

Execution Status 执行状态

Modified 修正

Path 路径

Status 状态

Steps 步骤

Template 模版

Test Name 测试名称

Type 类型

Actual 实际结果

Description 描述

Exec Date 执行日期

Exec Time 执行时间

Expected 期望结果

Source Test 测试资料

Status 状态

Step Name 步骤名称

Duration 执行的期限

Exec Date 执行日期

Exec Time 执行时间

Host 主机

Operating System 操作系统

OS Build Number 操作系统生成的编号OS Service Pack 操作系统的服务软件包

Run Name 执行名称

Run VC Status 执行 VC 的状态

Run VC User 执行 VC 的用户

Run VC Version 执行 VC 的版本

Status 状态

Test Version 测试版本

Tester 测试员

Attachment 附件

Author 作者

Cover Status 覆盖状态

Creation Date 创建日期

Creation Time 创建时间

Description 描述

Modified 修正

Name 名称

Priority 优先级

Product 产品

ReqID 需求编号

Reviewed 被检查

Type 类型

Exec Date 执行日期

Modified 被修正

Planned Exec Date 计划执行的日期

Planned Exec Time 计划执行的时间

Planned Host Name 计划执行的主机名称

Responsible Tester 负责测试的人员

Status 状态

Test Version 测试的版本

Tester 测试员

Time 时间

Close Date 关闭日期

Description 描述

Modified 修正

Open Date 开放日期

Status 状态

Test Set 测试集合

Acceptance testing(验收测试),系统

开发生命周期方法论的一个阶段,这时相

关的用户和/或独立测试人员根据测试计

划和结果对系统进行测试和接收。它让系

统用户决定是否接收系统。它是一项确定

产品是否能够满足合同或用户所规定需求

的测试。这是管理性和防御性控制。

Ad hoc testing(随机测试),没有书面

测试用例、记录期望结果、检查列表、脚

本或指令的测试。主要是根据测试者的经

验对软件进行功能和性能抽查。随机测试

是根据测试说明书执行用例测试的重要补

充手段,是保证测试覆盖完整性的有效方

式和过程。

Alpha testing(α测试),是由一个用户

在开发环境下进行的测试,也可以是公司

内部的用户在模拟实际操作环境下进行的

受控测试,Alpha测试不能由程序员或测试

员完成。

Automated Testing(自动化测试),使用

自动化测试工具来进行测试,这类测试一

般不需要人干预,通常在GUI、性能等测试

中用得较多。

Beta testing(β测试),测试是软件的

多个用户在一个或多个用户的实际使用环

境下进行的测试。开发者通常不在测试现

场,Beta测试不能由程序员或测试员完成。

Black box testing(黑盒测试),指测试

人员不关心程序具体如何实现的一种测试

方法。根据软件的规格对软件进行各种输

入和观察软件的各种输出结果来发现软件

的缺陷的测试,这类测试不考虑软件内部

的运作原理,因此软件对用户来说就像一

个黑盒子。

Bug(错误),有时称作defect(缺陷)或

error(错误),软件程序中存在的编程错

误,可能会带来不必要的副作用,软件的

功能和特性与设计规格说明书或用户需求

不一致的方面。软件缺陷表现特征为:软

件未达到产品说明书标明的功能;软件出

现产品说明书指明不会出现的错误;软件

功能超出产品说明书指明的范围;虽然产

品说明书未指出但是软件应达到的目标;

软件测试人员或用户认为软件难以理解,

不易使用,运行速度缓慢等问题。

Bug report(错误报告),也称为“Bug

record(错误记录)”,记录发现的软件

错误信息的文档,通常包括错误描述、复

现步骤、抓取的错误图像和注释等。

Bug tracking system(错误跟踪系统,

BTS),也称为“Defect tracking system,

DTS”,管理软件测试缺陷的专用数据库系

统,可以高效率地完成软件缺陷的报告、

验证、修改、查询、统计、存储等任务。

尤其适用于大型多语言软件的测试管理。

Build(工作版本),软件开发过程中用于内部测试的功能和性能等不完善的软件版本。工作版本既可以是系统的可操作版本,也可以是展示要在最终产品中提供的部分功能的部分系统。

Compatibility Testing(兼容性测试),也称“Configuration testing(配置测试)”,测试软件是否和系统的其它与之交互的元素之间兼容,如:浏览器、操作系统、硬件等。验证测试对象在不同的软件和硬件配置中的运行情况。

Capture/Replay Tool(捕获/回放工具),一种测试工具,能够捕获在测试过程中传递给软件的输入,并且能够在以后的时间中,重复这个执行的过程。这类工具一般在GUI测试中用的较多。

Crash(崩溃),计算机系统或组件突然并完全的丧失功能,例如软件或系统突然退出或没有任何反应(死机)。

Debug(调试),开发人员确定引起错误的根本原因和确定可能的修复措施的过程。一般发生在子系统或单元模块编码完成时,或者根据测试错误报告指出错误以后,开发人员需要执行调试过程来解决已存在的错误。

Deployment(部署),也称为shipment(发布),对内部IT系统而言,指它的第一个版本通过彻底的测试、形成产品、交付给付款客户的阶段。

Dynamic testing(动态测试),通过执行软件的手段来测试软件。

Exception(异常/例外),一个引起正常程序执行挂起的事件。

Functional testing(功能测试),也称为behavioral testing(行为测试),根据产品特征、操作描述和用户方案,测试一个产品的特性和可操作行为以确定它们满足设计需求。本地化软件的功能测试,用于验证应用程序或网站对目标用户能正确工作。使用适当的平台、浏览器和测试脚本,以保证目标用户的体验将足够好,就像应用程序是专门为该市场开发的一样。

Garbage characters(乱码字符),程序界面中显示的无意义的字符,例如,程序对双字节字符集的字符不支持时,这些字

符不能正确显示。

GB 18030 testing(GB 18030测试),软

件支持GB 18030字符集标准能力的测试,

包括GB 18030字符的输入、输出、显示、

存储的支持程度。

Installing testing(安装测试),确保

该软件在正常情况和异常情况的不同条件

下,例如,进行首次安装、升级、完整的

或自定义的安装都能进行安装。异常情况

包括磁盘空间不足、缺少目录创建权限等。

核实软件在安装后可立即正常运行。安装

测试包括测试安装代码以及安装手册。安

装手册提供如何进行安装,安装代码提供

安装一些程序能够运行的基础数据。

Integration testing(集成测试),被测

试系统的所有组件都集成在一起,找出被

测试系统组件之间关系和接口中的错误。

该测试一般在单元测试之后进行。

International testing(国际化测试),

国际化测试的目的是测试软件的国际化支

持能力,发现软件的国际化的潜在问题,

保证软件在世界不同区域中都能正常运

行。国际化测试使用每种可能的国际输入

类型,针对任何区域性或区域设置检查产

品的功能是否正常,软件国际化测试的重

点在于执行国际字符串的输入/输出功能。

国际化测试数据必须包含东亚语言、德语、

复杂脚本字符和英语(可选)的混合字符。

Localizability testing(本地化能力测

试),本地化能力是指不需要重新设计或

修改代码,将程序的用户界面翻译成任何

目标语言的能力。为了降低本地化能力测

试的成本,提高测试效率,本地化能力侧

是通常在软件的伪本地化版本上进行。本

地化能力测试中发现的典型错误包括:字

符的硬编码(即软件中需要本地化的字符

写在了代码内部),对需要本地化的字符

长度设置了国定值,在软件运行时以控件

位置定位,图标和位图中包含了需要本地

化的文本,软件的用户界面与文档术语不

一致等。

Load testing(负载测试),通过测试系

统在资源超负荷情况下的表现,以发现设

计上的错误或验证系统的负载能力。在这

种测试中,将使测试对象承担不同的工作

量,以评测和评估测试对象在不同工作量

条件下的性能行为,以及持续正常运行的

能力。负载测试的目标是确定并确保系统

在超出最大预期工作量的情况下仍能正常

运行。此外,负载测试还要评估性能特征,

例如,响应时间、事务处理速率和其他与

时间相关的方面。

Localization testing(本地化测试),

本地化测试的对象是软件的本地化版本。

本地化测试的目的是测试特定目标区域设

置的软件本地化质量。本地化测试的环境

是在本地化的操作系统上安装本地化的软

件。从测试方法上可以分为基本功能测试,

安装/卸载测试,当地区域的软硬件兼容性

测试。测试的内容主要包括软件本地化后

的界面布局和软件翻译的语言质量,包含

软件、文档和联机帮助等部分。

Performance testing(性能测试),评价

一个产品或组件与性能需求是否符合的测

试。包括负载测试、强度测试、数据库容

量测试、基准测试等类型。

Pilot testing(引导测试),软件开发中,

验证系统在真实硬件和客户基础上处理典

型操作的能力。在软件外包测试中,引导

测试通常是客户检查软件测试公司测试能

力的一种形式,只有通过了客户特定的引

导测试,软件测试公司才能接受客户真实

软件项目的软件测试。

Portability testing(可移植性测试),

测试瞄准于证明软件可以被移植到指定的

硬件或软件平台上。

Priority(优先权),从商业角度出发是

指错误的重要性,尤其是从客户和用户的

角度出发,是指错误对于系统的可行性和

可接受性的影响。与“Severity(严重

性)”相对照。

Quality assurance(质量保证QA),采取

的所有活动以保证一个开发组织交付的产

品满足性能需求和已确立的标准和过程。

Regression testing(回归测试),在发

生修改之后重新测试先前的测试以保证修

改的正确性。理论上,对软件的任何新版

本,都需要进行回归测试,验证以前发现

和修复的错误是否在新软件版本上再现。

Review(评审),在产品开发过程中,把

产品提交给项目成员、用户、管理者或其

它相关人员评价或批准的过程。

Sanity testing(健全测试),软件主要功能成分的简单测试以保证它是否能进行基本的测试。参考“Smoke t esting(冒烟测试)”。

Screen shot(抓屏、截图),软件测试中,将软件界面中的错误(窗口、菜单、对话框等)的全部或一部分,使用专用工具存储成图像文件,以便于后续处理。Severity(严重性),错误对被测系统的影响程度,在终端用户条件下发生的可能性,软件错误妨碍系统使用的程度。与“Priority(优先权)”相对照。

Smoke testing(冒烟测试),冒烟测试的对象是每一个新编译的需要正式测试的软件版本,目的是确认软件基本功能正常,可以进行后续的正式测试工作。冒烟测试的执行者是版本编译人员。参考“Sanity testing(健全测试)”。

Software life cycle(软件生命周期),开始于一个软件产品的构思,结束于该产品不再被使用的这段期间。

Static testing(静态测试),不通过执行来测试一个系统。如代码检查,文档检查和评审等。

Structured query language(结构化查询语句,SQL),在一个关系数据库中查询和处理数据的一种语言。

TBD(To be determined,待定),在测试文档中标是一项进行中的尚未最终确定的工作。

Test(测试),执行软件以验证其满足指定的需求并检测错误的过程。检测已有条件之间的不同,并评价软件项的特性软件项的分析过程。软件工程过程的一个活动,它将软件在预定的条件下运行以判断软件是否符合预期结果。

Test case(测试用例),为特定目标而开发的一组测试输入、执行条件和预期结果,其目标可以是测试某个程序路径或核实是否满足某个特定的需求。

Testing coverage(测试覆盖),指测试系统覆盖被测试系统的程度,一项给定测试或一组测试对某个给定系统或构件的所有指定测试用例进行处理所达到的程度。Testing environment(测试环境),进行

测试的环境,包括测试平台、测试基础设

施、测试实验室和其他设施。

Testing item(测试项),作为测试对象

的工作版本。

Testing plan(测试计划),描述了要进

行的测试活动的范围、方法、资源和进度

的文档。它确定测试项、被测特性、测试

任务、谁执行任务,并且任何风险都要冲

突计划。

Testing procedure(测试过程),指设置、

执行给定测试用例并对测试结果进行评估

的一系列详细步骤。

Testing script(测试脚本),一般指的

是一个特定测试的一系列指令,这些指令

可以被自动化测试工具执行。

Testing suite(测试包),一组测试用里

的执行框架;一种组织测试用例的方法。

在测试包里,测试用例可以组合起来创造

出独特的测试条件。

Unit testing(单元测试),指一段代码

的基本测试,其实际大小是未定的,通常

是一个函数或子程序,一般由开发者执行。

User interface(用户界面,UI),广义

是指使用户可以和计算机进行交互的硬件

和/或软件。狭义是指软件中的可见外观及

其底层与用户交互的部分(菜单、对话框、

窗口和其它控件)。

User interface testing(用户界面测试),

指测试用户界面的风格是否满足客户要

求,文字是否正确,页面是否美观,文字,

图片组合是否完美,操作是否友好等等。

UI 测试的目标是确保用户界面会通过测

试对象的功能来为用户提供相应的访问或

浏览功能。确保用户界面符合公司或行业

的标准。包括用户友好性、人性化、易操

作性测试。

White box testing(白盒测试),根据软

件内部的工作原理分析来进行测试,基于

代码的测试,测试人员通过阅读程序代码

或者通过使用开发工具中的单步调试来判

断软件的质量,一般黑盒测试由项目经理

在程序员开发中来实现。

Acceptance testing: 验收测试

Accessibility test: 软体适用性测试

Ad hoc testing: 随机测试

Algorithm analysis: 算法分析

Alpha testing: α测试

Anomaly: 异常

Artifact: 工件

Automated Testing: 自动化测试Architecture: 构架

Assertion checking: 断言检查

Audit: 审计

Application under test (AUT): 所测试的应用程序

Baseline: 基线

Behaviour: 行为

Benchmark: 基准

Beta testing: β测试

Best practise: 最佳实践

Black box testing: 黑盒测试

Blocking bug: 阻碍性错误

Bottom-up testing: 自底向上测试

Branch coverage: 分支覆盖

Brute force testing: 强力测试

Bug: 错误

Bug report: 错误报告

Bug tracking system: 错误跟踪系统Build: 工作版本(内部小版本)Boundary values: 边界值

Buddy test: 合伙测试

Buffer: 缓冲

Bug bash: 错误大扫除

Build-in: 内置

Build Verfication tests(BVTs): 版本验证测试

Cause-effect graph: 因果图

Capture/Replay Tool: 捕获/回放工具Character Set: 字符集

Capability Maturity Model (CMM): 能力成熟度模型

Capability Maturity Model Integration (CMMI): 能力成熟度模型整合Closeout: 收尾

Code coverage: 代码覆盖Code page: 代码页

Code rule: 编码规范

Code sytle: 编码风格

Common sense: 常识

Compatibility Testing: 兼容性测试Component testing: 组件测试

Condition coverage: 条件覆盖Configuration testing: 配置测试

Control flow graph: 控制流程图Concurrency user: 并发用户Configuration item: 配置项

Core team: 核心小组

Customer-focused mindset: 客户为中心的理念体系

Crash: 崩溃

Criticality analysis: 致命度分析Cyclomatic complexity: 圈复杂度

Data Flow Analysis: 数据流分析

Decision coverage: 判定覆盖

Debug: 调试

Defect: 缺陷

defect density: 缺陷密度

Deployment: 部署

Desk checking: 桌前检查

Dynamic analysis: 动态分析

Entry criteria: 准入条件

Equivalence class: 等价类

Equivalence partition testing: 等价划分测试Error: 错误

Error guessing: 错误猜测

Error seeding: 错误播种

Exception: 异常/例外

Exception handlers: 异常处理器Exhaustive testing: 穷尽测试

Exploratory testing: 探索性测试

Event-driven: 事件驱动

Envisioning Phase: 构想阶段

Failure: 失效

Fault: 故障

Field testing: 现场测试

Framework: 框架

Functional testing: 功能测试

Hard-coding: 硬编码

Hotfix: 热补丁

G11N(Globalization): 全球化

Gap analysis: 差距分析

Garbage characters: 乱码字符

Glossary: 术语表

Glass-box testing: 白箱测试或白盒测试GUI(Graphical User Interface): 图形用户界面

I18N(Internationalization): 国际化Incremental testing: 渐增测试

Installing testing: 安装测试

Integration testing: 集成测试

Interface: 接口

Inspection: 审查

Issue: 问题

Iteration: 迭代

Iterative development: 迭代开发

Key concepts: 关键概念

Key Process Area: 关键过程区域

Keyword driven testing: 关键字驱动测试Kick-off meeting: 启动会议

Lag time: 延迟时间

Lead time: 前置时间

L10N(Localization): 本地化

Localizability testing: 本地化能力测试Localization testing: 本地化测试

Load testing: 负载测试

Maintenance: 维护

Maintainability: 可维护性

Master project schedule: 总体项目方案Measurement: 度量

Memory leak: 内存泄漏

Migration testing: 迁移测试

Milestone: 里程碑

Mock up: 模型,原型

Monkey testing: 跳跃式测试Module testing: 模块测试

Negative Testing: 逆向测试, 反向测试, 负面测试

N/A(Not applicable): 不适用的

Off-the-shelf software: 套装软件

Pair Programming: 成对编程

Path coverage: 路径覆盖

Peer review: 同行评审

Performance: 性能

Performance indicator: 性能(绩效)指标Performance testing: 性能测试

Pilot: 试验

Pilot testing: 引导测试

Portability: 可移植性

Positive testing: 正向测试Postcondition: 后置条件

Pseudo code: 伪代码

Precondition: 前提条件

Priority: 优先权

Prototype: 原型

Quality assurance(QA): 质量保证

Quality Control(QC): 质量控制

Recovery testing: 恢复测试Refactoring: 重构

Regression testing: 回归测试

Release: 发布

Release note: 版本说明

Reliability: 可靠性

Return of Investment(ROI): 投资回报率Review: 评审

Requirements-based testing: 基于需求的测试

Requirements management tool: 需求管理工具

Risk assessment: 风险评估

Root Cause Analysis(RCA): 根本原因分析Robustness: 强健性

Sanity testing: 健全测试

Screen shot: 抓屏、截图

Severity: 严重性

Security testing: 安全性测试

Shipment: 发布

Smoke testing: 冒烟测试

Software life cycle: 软件生命周期Software development plan(SDP): 软件开发计划

Static testing: 静态测试

Simulation: 模拟

Simulator: 模拟器

SLA(Service level agreement): 服务级别协议

Software development process: 软件开发过程

Source code: 源代码

Specification: 规格说明书

Spiral model: 螺旋模型

Statement coverage: 语句覆盖

Stepwise refinement: 逐步优化

Stress Testing: 压力测试

Structural coverage: 结构化覆盖

Stub: 桩

Synchronization: 同步

Syntax testing: 语法分析

System analysis: 系统分析

System design: 系统设计

System integration: 系统集成

System Testing: 系统测试

Testing bed: 测试平台

Test case: 测试用例

Testing coverage: 测试覆盖

Test design: 测试设计

Test driver: 测试驱动

Testing environment: 测试环境

Test infrastructure: 测试基础建设

Testing item: 测试项

Testing plan: 测试计划

Testing procedure: 测试过程

Test scenario: 测试场景

Test script: 测试脚本

Test strategy: 测试策略

Test suite: 测试包

Test target: 测试目标Testability: 可测试性

Testware: 测试工具

Top-down testing: 自顶向下测试

Thread testing: 线程测试

Traceability: 可跟踪性

Traceability matrix: 跟踪矩阵

Trade-off: 平衡

Unit testing: 单元测试

User interface(UI): 用户界面

Usability testing: 可用性测试

Usage scenario: 使用场景

User acceptance Test: 用户验收测试

User profile: 用户信息

User scenario: 用户场景

Version: 版本

Virtual user: 虚拟用户

V olume testing: 容量测试

V&V (Verification & Validation): 验证&确认

Walkthrough: 走读

Waterfall model: 瀑布模型

White box testing: 白盒测试

Work breakdown structure (WBS): 任务分解结构

Web testing: 网站测试

园林景观专业英语词汇

园林景观专业英语词汇 规划planning 草图sketch;rough map 平面plan 剖面section 立面elevation 透视perspective 示意图diagram 容积率coverage 城市设计urban design; civic design 区域规划regional planning 步行轴ped axis 总体规划general planning; master planning 分区规划district planning 近期建设规划immediate plan 城市详细规划detailed planning 控制性详细规划control detailed planning 修建性详细规划site plan 居住区规划residential district planning 城市化urbanization 城市生态urban ecology 可持续发展sustainable development 历史文化名城保护规划Plan of Preservation of Historic Cities 旧城改建urban redevelopment 开发区development area 城市化水平urbanization level 城市群agglomeration 城镇体系urban system 卫星城satellite town 城市基础设施urban infrastructure 居民点settlement 市municipality; city 生态基础设施ecological infrastructure 牧场pasture 市域administrative region of a city 商业区commercial district 行政中心administration center 商业街commercial street 科技园technological region 校园规划campus planning 城市中心区urban center district 居住单元flat 历史地段history district

建筑专业常用英语词汇

建筑专业常用英语词汇

建筑专业常用英语词汇 A design basis 设计依据 计划建议书planning proposals 设计任务书design order 标准规范standards and codes 条件图information drawing 设计基础资料basic data for design 工艺流程图process flowchart 工程地质资料engineering geological data 原始资料original data 设计进度schedule of design B stage of design 设计阶段 方案scheme, draft 草图sketch 会谈纪要summary of discussion 谈判negotiation 可行性研究feasibility study 初步设计preliminary design 基础设计basic design 详细设计detail design 询价图enquiry drawing 施工图working drawing, construction drawing 竣工图as built drawing C climate condition 气象条件 日照sunshine 风玫瑰wind rose 主导风向prevailing wind direction 最大(平均)风速maximum (mean) wind velocity 风荷载wind load 最大(平均)降雨量maximum (mean) rainfall 雷击及闪电thunder and lightning

材料专业英语常见词汇

材料专业英语常见词汇(一) Structure ['str?kt??]组织 Ceramic [si'r?mik]陶瓷 Ductility [d?k'til?ti] 塑性 Stiffness ['stifnis]刚度 Grain [ɡrein]晶粒 Phase [feiz]相 Unit cell 单胞 Bravais lattice 布拉菲['l?tis]布拉菲点阵 Stack [st?k]堆垛 Crystal ['krist?l] 晶体 Metallic crystal structure [mi't?lik, me-]金属性晶体点阵Non-directional [,n?ndi'rek??n?l, -dai-]无方向性 Face-centered cubic ['kju:bik]面心立方 Body-centered cubic 体心立方Hexagonal close-packed [hek's?ɡ?n?l]['kl?us'p?kt]密排六方Copper ['k?p?] 铜 Aluminum [?'lju:min?m]铝 Chromium ['kr?umj?m]铬 Tungsten ['t??st?n]钨 Crystallographic Plane [,krist?l?u'ɡr?fik][plein]晶面Crystallographic direction 晶向 Property ['pr?p?ti] 性质 Miller indices ['indisi:z]米勒指数 Lattice parameters ['l?tis][p?'r?mit?]点阵参数 Tetragonal [te'tr?ɡ?n?l]四方的 Hexagonal [hek's?ɡ?n?l]六方的 Orthorhombic [,?:θ?'r?mbik]正交的Rhombohedra [,r?mb?u'hi:dr?] 菱方的 Monoclinic [,m?n?u'klinik]单斜的 Prism ['prizm]棱镜 Cadmium ['k?dmi?m]镉 Coordinate system [k?u'?:dinit, k?u'?:dineit]坐标系Point defect ['di:fekt, di'f-, di'fekt]点缺陷Lattice ['l?tis]点阵 Vacancy ['veik?nsi]空位 Solidification [,s?lidifi'kei??n]结晶 Interstitial [,int?'sti??l]间隙 Substitution [,s?bsti'tju:??n]置换 Solid solution strengthening [s?'lju:??n]['stre?θ?n, 'stre?kθ?n] 固溶强化

软件测试常用英语词汇汇总

软件测试常用英语词汇 静态测试:Non-Execution-Based Testing或Static testing 代码走查:Walkthrough 代码审查:Code Inspection 技术评审:Review 动态测试:Execution-Based Testing 白盒测试:White-Box Testing 黑盒测试:Black-Box Testing 灰盒测试:Gray-Box Testing 软件质量保证SQA:Software Quality Assurance 软件开发生命周期:Software Development Life Cycle 冒烟测试:Smoke Test 回归测试:Regression Test 功能测试:Function Testing 性能测试:Performance Testing 压力测试:Stress Testing 负载测试:Volume Testing 易用性测试:Usability Testing 安装测试:Installation Testing 界面测试:UI Testing 配置测试:Configuration Testing 文档测试:Documentation Testing 兼容性测试:Compatibility Testing 安全性测试:Security Testing 恢复测试:Recovery Testing 单元测试:Unit Test 集成测试:Integration Test 系统测试:System Test 验收测试:Acceptance Test 测试计划应包括: 测试对象:The Test Objectives 测试范围: The Test Scope 测试策略: The Test Strategy 测试方法: The Test Approach, 测试过程: The test procedures, 测试环境: The Test Environment, 测试完成标准:The test Completion criteria 测试用例:The Test Cases 测试进度表:The Test Schedules 风险:Risks 接口:Interface 最终用户:The End User 正式的测试环境:Formal Test Environment 确认需求:Verifying The Requirements

(完整版)土木工程专业英语常用词汇

Part IV:Commonly Used Professional Terms of Civil Engineering development organization 建设单位 design organization 设计单位 construction organization 施工单位 reinforced concrete 钢筋混凝土 pile 桩 steel structure 钢结构 aluminium alloy 铝合金 masonry 砌体(工程)reinforced ~ 配筋砌体load-bearing ~ 承重砌体unreinforced ~非配筋砌体 permissible stress (allowable stress) 容许应力plywood 胶合板 retaining wall 挡土墙 finish 装修 finishing material装修材料 ventilation 通风 natural ~ 自然通风 mechanical ~ 机械通风 diaphragm wall (continuous concrete wall) 地下连续墙 villa 别墅 moment of inertia 惯性矩 torque 扭矩 stress 应力normal ~ 法向应力shear ~ 剪应力 strain 应变 age hardening 时效硬化 air-conditioning system空调系统 (air) void ration(土)空隙比 albery壁厨,壁龛 a l mery壁厨,贮藏室 anchorage length锚固长度 antiseismic joint 防震缝 architectural appearance 建筑外观 architectural area 建筑面积 architectural design 建筑设计 fiashing 泛水 workability (placeability) 和易性 safety glass安全玻璃 tempered glass (reinforced glass) 钢化玻璃foamed glass泡沫玻璃 asphalt沥青 felt (malthoid) 油毡 riveted connection 铆接 welding焊接 screwed connection 螺栓连接 oakum 麻刀,麻丝 tee三通管 tap存水弯 esthetics美学 formwork 模板(工程) shoring 支撑 batching 配料 slipform construction (slipforming) 滑模施工 lfit-slab construction 升板法施工 mass concrete 大体积混凝土 terrazzo水磨石 construction joint 施工缝 honeycomb蜂窝,空洞,麻面 piled foundation桩基 deep foundation 深基础 shallow foundation浅基础 foundation depth基础埋深 pad foundation独立基础 strip foundation 条形基础 raft foundation筏基 box foundation箱形基础 BSMT=basement 地下室 lift 电梯electric elevator lift well电梯井 escalator 自动扶梯 Poisson’s ratio 泊松比μ Young’s modulus , modulus of elasticity 杨氏模量,弹性模量E safety coefficient 安全系数 fatigue failure 疲劳破坏 bearing capacity of foundations 地基承载力bearing capacity of a pile 单桩承载力 two-way-reinforcement 双向配筋 reinforced concrete two-way slabs钢筋混凝土双向板 single way slab单向板 window blind 窗帘sun blind wind load 风荷载 curing 养护 watertight concrete 防水混凝土 white cement白水泥 separating of concrete混凝土离折segregation of concrete mortar 砂浆~ joint 灰缝 pilaster 壁柱 fire rating耐火等级 fire brick 耐火砖 standard brick标准砖

常用专业英语词汇集锦.

六. Abbreviation

168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 R/D R/I RCCP REV RMA RMA ROP RPN RTV S/N S/O SAI SCM SFC SIP SIS SMD SMT SOP SOR SPC SPEC SQM SWOT TE TOC TPI TPM TQA TQC TQM VQA VQM W/H W/O WHS WIP Research and Development Run-In Rough Cut Capacity Planning Revision Returned Merchandise Access Return Merchandise Approval(or Authorization Re-Order Point Risk Priority Number Return To Vendor Serial Number Sales Order Social Accountability International Supply Chain Management Shop Floor Control Standard Inspection Procedule Strategic Information System Surface Mounting Device Surface Mounting Technology Standard Operation Procedure Special Order Request Statistical Process Control Specification Supplier Quality Management Strengths、Weaknesses、Opportunities、 Threates test engineering Theory of Constraints Total Productive Innovation Total Production Management Total Quality Assurance Total Quality Control Total Quality Management Vender Quality Approval Vendor Quality Management Warehouse Work Order warehouse Work In Process 研發部常溫熱機(老

软件测试英语单词

软件测试英语单词

软件测试英语单词 Acceptance 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:自动化测试 Backus-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:分支条件组合测试

建筑结构专业英语词汇

A acceptable quality 合格质量 acceptance lot 验收批量 aciera 钢材 admixture 外加剂 against slip coefficient between friction surface of high-strength bolted connection 高强度螺栓摩擦面抗滑移系数 aggregate 骨料 air content 含气量 air-dried timber 气干材 allowable ratio of height to sectional thickness of masonry wall or column 砌体墙、柱容许高厚比 allowable slenderness ratio of steel member 钢构件容许长细比 allowable slenderness ratio of timber compression member 受压木构件容许长细比allowable stress range of fatigue 疲劳容许应力幅 allowable ultimate tensile strain of reinforcement 钢筋拉应变限值 allowable value of crack width 裂缝宽度容许值 allowable value of deflection of structural member 构件挠度容许值 allowable value of deflection of timber bending member 受弯木构件挠度容许值allowable value of deformation of steel member 钢构件变形容许值 allowable value of deformation of structural member 构件变形容许值 allowable value of drift angle of earthquake resistant structure 抗震结构层间位移角限值 amplified coefficient of eccentricity 偏心距增大系数 anchorage 锚具 anchorage length of steel bar 钢筋锚固长度 approval analysis during construction stage 施工阶段验算 arch 拱 arch with tie rod 拉捍拱 arch—shaped roof truss 拱形屋架

[电气工程]常用专业英语词汇

电气工程常用专业英语词汇表 电气工程常用专业英语词汇表 电路基础 ideal voltage (current) source 理想电压(流)源volt-ampere characteristic 伏安特性potential difference 电位差 reference potential 参考电位resistance 电阻capacitance 电容 inductance 电感 reactance 电抗 inductive(capacitive) reactance 感(容)抗impedance 阻抗 equivalent circuit 等效电路 Ohm’s law 欧姆定律Kirchhoff’s law 基尔霍夫定律Kirchhoff’s voltage law(KVL)基尔霍夫电压定律Kirchhoff’s current law(KCL)基尔霍夫电流定律Thevenin’s theorem 戴维宁定理Norton’s theorem 诺顿定理 branch 支路 node 结点 loop 回路 mesh 网孔 open circuit 开路(断路) short circuit 短路 branch current analysis 支路电流法mesh current analysis 网孔电流法 ode voltage analysis 结点电位法n superposition theorem 叠加原理passive(active) two-terminal network 无(有)源二端网络root mean square (RMS) 均方根值 effective value 有效值instantaneous value 瞬时值 ampere 安培 volt 伏特 Hertz 赫兹 reactive power` 无功功率 active power 有功功率 transfer function 传递函数 apparent power 视在功率 power-factor compensation 功率因数补偿series (parallel) resonance 串(并)联谐振 amplitude(phase)-frequency response characteristic 幅(相)频特性 figure of merit 品质因素 pass-band 通频带bandwidth (BW) 带宽 first(second)-order filter 一(二)阶滤波器low(high)-pass filter 低(高)通滤波器band-pass(stop) filter 带通(阻)滤波器transfer function 转移函数 Bode diagram 波特图 Fourier series 傅立叶级数 three-phase circuit 三相电路 cutoff frequency 截止频率 FFT (Fast Fourier Transform) 快速傅立叶变换 state variable 状态变量 电机 generation 发电 transmission 输电 distribution 配电 coil 线圈 core 铁心 winding 绕组 electrical machine 电机 generator 发电机 motor 电动机 stator (rotor) 定子(转子) armature 电枢 brush 电刷 commutator 换向器 salient-pole 凸极 slip ring 滑环 induction motor 感应电动机 magnetic flux 磁通 asynchronous machine 异步电机 synchronous generator 同步发电机 eddy current 涡流 EMF(electromotive force)电动势 counter EMF 反电势 torque 转矩 excitation 励磁 prime mover 原动机 rectifier 整流器 leakage flux 漏磁通 demagnetization 退磁,去磁 short-circuit ratio 短路比 converter (inverter) 换流器(逆变器) synchronous condenser 同步调相机 magnetization curve 磁化曲线 separately exciting 他励 compounded excited 复励 self-exciting 自励 series(shunt)-wound 串(并)励

园林景观专业英语词汇

园林景观专业英语词汇 园林景观专业英语词汇 规划planning 草图sketch;rough map 平面plan 剖面section 立面elevation 透视perspective 示意图diagram 容积率coverage 城市设计urban design; civic design 区域规划regional planning 步行轴ped axis 总体规划general planning; master planning 分区规划district planning 近期建设规划immediate plan 城市详细规划detailed planning 控制性详细规划control detailed planning 修建性详细规划site plan 居住区规划residential district planning 城市化urbanization

城市生态urban ecology 可持续发展sustainable development 历史文化名城保护规划Plan of Preservation of Historic Cities 旧城改建urban redevelopment 开发区development area 城市化水平urbanization level 城市群agglomeration 城镇体系urban system 卫星城satellite town 城市基础设施urban infrastructure 居民点settlement 市municipality; city 生态基础设施ecological infrastructure 牧场pasture 市域administrative region of a city 商业区commercial district 行政中心administration center 商业街commercial street 科技园technological region 校园规划campus planning 城市中心区urban center district

气象常用专业英语词汇

主题词表 English Chinese 01. 大气 atmospheric science 大气科学 meteorology 气象学 atmosphere 大气 atmospheric impurity 大气杂质 atmospheric suspended matter 大气悬浮物 atmospheric composition 大气成分 atmospheric mass 大气质量 atmospheric density 大气密度 atmospheric subdivision 大气分层 homosphere 均质层 heterosphere 非均质层 standard [pressure] level 标准层 isothermal layer 等温层 lower atmosphere 低层大气 middle atmosphere 中层大气 upper atmosphere 高层大气 troposphere 对流层 tropopause 对流层顶 stratosphere 平流层 stratopause 平流层顶 mesosphere 中间层 mesopause 中间层顶 thermosphere 热层 exosphere 外[逸]层 ionosphere 电离层 magnetosphere 磁层 ozonosphere 臭氧层 free atmosphere 自由大气 planetary atmosphere 行星大气 standard atmosphere(reference atmosphere) 标准大气(参考大气) homogeneous atmosphere 均质大气 isothermal atmosphere 等温大气 polytropic atmosphere 多元大气 scale height 大气标高 meteorological element 气象要素 air temperature 气温 wet-bulb temperature 湿球温度 dry-bulb temperature 干球温度 atmospheric pressure 气压 standard atmosphere pressure 标准大气压 station pressure 本站气压 sea-level pressure 海平面气压 pressure gradient 气压梯度 barometric height formula 压高公式pressure gradient force 气压梯度力Coriolis force 科里奥利力 water vapor 水[蒸]汽 water vapor pressure 水汽压 humidity 湿度 relative humidity 相对湿度 absolute humidity 绝对湿度 specific humidity 比湿 mixing ratio 混合比 dew point [temperature] 露点(温度) depression of the dew point (温度)露点差super-saturated air 过饱和空气 saturation specific humidity 饱和比湿saturation vapor pressure 饱和水汽压saturation deficit 饱和差 cloud 云 low cloud 低云 middle cloud 中云 high cloud 高云 cloud amount 云量 cloud height 云高 cloud genera 云属 cloud etage 云族 cloud species 云种 cloud variety 云类 cloud form 云状 cirrus, Ci 卷云 cirrostratus, Cs 卷层云 cirrocumulus, Cc 卷积云 altocumulus, Ac 高积云 altostratus, As 高层云 cumulus, Cu 积云 cumulus humilis, Cu hum 淡积云 cumulus congestus, Cu con 浓积云cumulonimbus, Cb 积雨云 cumulus fractus, Cu fra 碎积云stratocumulus, Sc 层积云 stratus, St 层云 nimbostratus, Ns 雨层云 stratiform cloud 层状云 cumuliform cloud 积状云 cold cloud 冷云 warm cloud 暖云 ice cloud 冰云 wind 风 wind direction 风向 wind speed, wind velocity 风速 maximum wind speed 最大风速

园林专业英语词汇

园林学landscape architecture, garden architecture 园林garden and park 绿化greening, planting 城市绿化urban green, urban planting 城市绿地urban green space 公园绿地public park 公园park 儿童公园children park 动物园zoo 植物园botanical garden 墓园cemetery garden 盆景园penjing garden, miniature landscape 盲人公园park for the blind 花园garden 历史名园historical garden and park 风景名胜公园famous scenic park 纪念公园memorial park 街旁绿地roadside green space 带状公园linear park 专类公园theme park 岩石园rock garden 社区公园community park 生产绿地productive plantation area 防护绿地green buffer, green area for environmental protection 附属绿地attached green space 居住绿地green space attachéd to housing estate, residential green space 道路绿地green space attached to urban road and square 屋顶花园roof garden 立体绿化vertical planting 风景林地scenic forest land 城市绿地系统urban green space system 城市绿地系统规划urban green space system planning 绿地覆盖面积green coverage 绿地覆盖率percentage of greenery coverage 绿地率greening rate, ratio of green space 绿带green belt 楔形绿地green wedge 城市绿地boundary line of urban green space 园林史landscape history, garden history 古典园林classical garden 囿hunting park 苑imperial park 皇家园林royal garden 私家园林private garden 寺庙园林monastery garden

常用专业术语英文

组装、冲压、喷漆等专业词汇 Assembly line组装线 Layout布置图 OOBA开箱检查 fit together组装在一起 fasten锁紧(螺丝) fixture 夹具(治具) pallet栈板 barcode条码 barcode scanner条码扫描器 fuse together熔合 repair修理 operator作业员 QC quality品管 supervisor 课长 section supervisor课长 deputy section supervisor =vice section superisor副课长 ME制造工程师 MT制造生技 cosmetic inspect外观检查 inner parts inspect内部检查 thumb screw大头螺丝 lbs. inch镑、英寸 front plate前板 rear plate后板 chassis基座 bezel panel面板 power button电源按键 reset button重置键Hi-pot test of SPS高源高压测试 V oltage switch of SPS 电源电压接拉键 sheet metal parts 冲件 plastic parts塑胶件 SOP制造作业程序 material check list物料检查表 trolley台车 carton纸箱 sub-line支线 left fork叉车 personnel resource department 人力资源部 production department生产部门 planning department企划部 QC Section品管科 stamping factory冲压厂 painting factory烤漆厂 molding factory成型厂 punching machine 冲床 robot机械手 lathe车床 planer |'plein|刨床 miller铣床 grinder磨床 driller??床 linear cutting线切割 electrical sparkle电火花 welder电焊机 staker=reviting machine铆合机 position职务 president董事长 general manager总经理 special assistant manager特助 factory director厂长 department director部长 deputy manager | =vice manager副理 group leader/supervisor组长 line supervisor线长 thickness gauge厚薄规 gauge(or jig)治具 power wire电源线 buzzle蜂鸣器 defective product label不良标签 identifying sheet list标示单 iudustrial alcohol工业酒精 Tiana天那水 packaging打包 missing part漏件 wrong part错件 excessive defects过多的缺陷 critical defect极严重缺陷 major defect主要缺陷 minor defect次要缺陷 not up to standard不合规格 dimension/size is a little bigger尺寸偏 大(小) cosmetic defect外观不良 slipped screwhead/slippery screw head 螺丝滑头 speckle斑点 rust生锈 deformation变形 burr(金属)flash(塑件)毛边 poor staking铆合不良 excesssive gap间隙过大 grease/oil stains油污 inclusion杂质 painting peel off脏污 shrinking/shrinkage缩水 mixed color杂色 scratch划伤 poor processing 制程不良 poor incoming part事件不良 painting make-up补漆 discoloration羿色 water spots水渍 polishing/surface processing表面处理 exposed metal/bare metal金属裸露 lack of painting烤漆不到位 safety安全 quality品质 delivery deadline交货期 cost成本 engineering工程 die repair模修 enterprise plan = enterprise expansion projects企划 qualified products, up-to-grade products良品 defective products, not up-to-grade products不良品 to return material/stock to退料 scraped |'skræpid|报废 (be)qualfied, up to grade合格 not up to grade, not qualified不合格

软件测试英文术语

软件测试常用单词: 1.静态测试:Non-Execution-Based Testing或Static testing 代码走查:Walkthrough 代码审查:Code Inspection 技术评审:Review 2.动态测试:Execution-Based Testing 3.白盒测试:White-Box Testing 4.黑盒测试:Black-Box Testing 5.灰盒测试:Gray-Box Testing 6.软件质量保证SQA:Software Quality Assurance 7.软件开发生命周期:Software Development Life Cycle 8.冒烟测试:Smoke Test 9.回归测试:Regression Test 10.功能测试:Function Testing 11.性能测试:Performance Testing 12.压力测试:Stress Testing 13.负载测试:Volume Testing 14.易用性测试:Usability Testing 15.安装测试:Installation Testing 16.界面测试:UI Testing 17.配置测试:Configuration Testing 18.文档测试:Documentation Testing 19.兼容性测试:Compatibility Testing 20.安全性测试:Security Testing 21.恢复测试:Recovery Testing 22.单元测试:Unit Tes 23.集成测试:Integration Test 24.系统测试:System Test 25.验收测试:Acceptance Test 26.测试计划应包括: 测试对象:The Test Objectives, 测试范围:The Test Scope,

风景园林景观设计专业英语

园林学landscape architecture,garden architecture 园林garden and park 绿化greening,planting 城市绿化urban greening,urban planting 城市绿地urban green space 公园绿地public park 公园park 儿童公园children park 动物园zoo 植物园botanical garden 墓园cemetery garden 盆景园penjng garden,miniature landscape 盲人公园park for the blind 花园garden 历史名园historical garden and park

风景名胜公园famous scenic park 纪念公园memorial park 街旁绿地roadside green space 带状公园linear park 专类公园theme park 岩石园rock garden 社区公园community park 生产绿地productive plantation area 防护绿地green buffer,green area for environmental protection 附属绿地attached green space 居住绿地green space attached to housing estate,residential green space 道路绿地green space attached to urban road and square 屋顶花园roof garden 立体绿化vertical planting 风景林地scenic forest land

相关文档