
软件测试
软件测试学习
步步咏凉天
这个作者很懒,什么都没留下…
展开
-
Ron Patton软件测试习题:概述
http://food.whistleblower.org/software_testing_ron_patton.pdfChapter 1 Software Testing Background1. In the Year 2000 bug example, did Dave do anything wrong?Not if the product spec and design goals for the software never stated that the product should转载 2020-06-23 11:47:49 · 1471 阅读 · 0 评论 -
Ron Patton软件测试习题:黑盒测试、白盒测试
以下内容大部分来自 ron-patton-software-testingPART II Testing FundamentalsChapter 4 Examining the Specification1. Can a software tester perform white-box testing on a specification?Yes, if the tester is involved with the process used in defining the specificat转载 2020-06-23 10:58:43 · 2514 阅读 · 0 评论 -
Ron Patton软件测试习题:配置测试、兼容性测试、外语测试、可用性测试文档测试、网站测试
以下内容大部分来自 ron-patton-software-testingPART III Applying Your Testing SkillsChapter 8 Configuration Testing1. component vs a peripheral (外围设备)?Generally, a component is a hardware device internal to a PC.A peripheral is external to the PC.The lines ca转载 2020-06-23 10:11:50 · 1257 阅读 · 0 评论 -
Ron Patton软件测试习题:自动化测试、Bug Bashes、Beta Testing
以下内容大部分来自 ron-patton-software-testingPART IV Supplementing Your TestingChapter 14 Automated Testing and Test Tools1. A few benefits of using software test tools and automation.自动化测试优点They can speed up the amount of time it takes to run your test cases转载 2020-06-23 09:07:55 · 474 阅读 · 0 评论 -
Ron Patton软件测试习题:编写测试文档
以下内容大部分来自 ron-patton-software-testingPART V Working with Test DocumentationChapter 16 Planning Your Test Effort1. What’s the purpose of a test plan?测试计划的目的To paraphrase the ANSI/IEEE definition, the purpose of a test plan is to define the scope,approac转载 2020-06-23 07:53:44 · 895 阅读 · 0 评论 -
软件测试基础:软件测试的公理和术语
以下内容大部分来自 ron-patton-software-testing第3章重点:• Why software can never be perfect• Why software testing isn’t just a technical problem文章目录Testing AxiomsIt’s Impossible to Test a Program CompletelySoftware Testing Is a Risk-Based ExerciseTesting Can’t Show转载 2020-06-21 15:51:20 · 418 阅读 · 0 评论 -
软件测试基础:软件开发过程
以下内容大部分来自 ron-patton-software-testing第2章文章目录Product ComponentsWhat Effort Goes Into a Software Product?What Parts Make Up a Software Product?Software Project StaffSoftware Development Lifecycle ModelsBig-Bang ModelCode-and-Fix ModelWaterfall ModelSpiral M转载 2020-06-20 15:22:13 · 573 阅读 · 0 评论 -
bug大扫除&验收测试
文章目录高效测试的途径Why it's importtant to have other peple testTest ShareA Bug bashConstraint (制约因素&挑战)How to overcome (如何克服)Accepted testing (验收测试)α testing (内测)β Testing (公测)高效测试的途径借助自动化工具借助他人的力量W...原创 2020-05-07 11:53:04 · 317 阅读 · 0 评论 -
软件测试背景
以下内容大部分来自 ron-patton-software-testing软件测试背景文章目录Bug 的起源Infamous Software Error Case StudiesDisney’s Lion King, 1994 –1995Intel Pentium Floating-Point Division Bug, 1994What Is a Bug?Why Do Bugs Occur?The Cost of BugsWhat Exactly Does a Software Tester Do转载 2020-06-20 10:17:30 · 877 阅读 · 0 评论 -
一些自动化测试概念
自动化测试的重要概念介绍The Benefits of Automation and ToolsRegression testing 回归测试目的:check that the bugs you found in previous test runs wereindeed fixed and that no new bugs were introducedThis process of ...原创 2020-04-30 12:13:15 · 471 阅读 · 0 评论 -
兼容性测试(Compatibility Testing)
What it means for software to be compatibleinteracts with and shares information correctly with other softwareManagement MarketExamples of compatible software are 举个栗子• Cutting text from a Web pa...原创 2020-04-09 11:59:17 · 1459 阅读 · 0 评论 -
配置测试简单介绍
Configuration testing definition:Configuration testing is the process of checking the operation of the software you are testing with all these various types of hardware.HarwarePC; Components; Peri...原创 2020-04-09 11:11:26 · 488 阅读 · 0 评论 -
4 你真的懂得检查产品说明书吗
文章目录什么是黑盒测试例子Black-box testing verifies that the requirements have been met:黑盒测试的优点黑盒测试的缺点Testing the Spec – Where is the beginningBasic rulesPerforming a High-Level ReviewLow-Level Spec Test Techniqu...原创 2020-03-16 16:57:34 · 765 阅读 · 0 评论 -
静态白盒测试:检查代码和设计(附思维导图)
文章目录为什么需要检查代码Examine the Design Documents & CodeMajor Problems with These TestsThree approachesFormal reviewsRelative strengths of test strategies为什么需要检查代码Examine the Design Documents & Code...原创 2020-04-01 16:04:13 · 553 阅读 · 0 评论 -
为什么c、c++编程标准比java多
因为C、C++被更多用在嵌入式、高可信软件领域,需要更多、更高的标准来避免bug原创 2020-03-19 12:04:58 · 190 阅读 · 0 评论 -
5 暂时将你眼睛闭了起来~Testing the Software with Blinders on
Dynamic, Black-box Testing• Obviously, we need something that defines the software—i.e.requirements document or specification document.We must be able to specify what should be produced as output ...原创 2020-03-16 21:21:45 · 677 阅读 · 0 评论 -
Java求解一元二次方程+单元测试(IDEA+Junit)
介绍环境配置使用idea IDE 进行单元测试,首先需要安装JUnit 插件。1.安装JUnit插件步骤File–>settings–>Plguins–>Browse repositories–>输入JUnit–>选择JUnit Generator V2.0安装。2.使用JUnit插件在需要进行单元测试的类中,使用快捷键alt+insert,选择JUnit...原创 2020-03-04 19:12:17 · 1627 阅读 · 0 评论