什么是软件测试 软件测试 (英语:software testing),描述一种用来促进鉴定软件的正确性、完整性、安全性和质量的过程。 换句话说,软件测试是 一种实际输出与预期输出间的审核或者比较过程 。 为什么进行软件测试 确保软件完成了它所承诺或公布的功能。 确保软件满足性能和效率的要求。 确保软 ...
分类:
其他好文 时间:
2020-01-31 15:49:20
阅读次数:
81
[TOC] 志铭 2020年1月23日 11:49:41 1.单元测试概念 什么是单元测试? 单元测试(unit testing)是一段自动化的代码,用来调用被测试的方法或类,而后验证基于该方法或类的逻辑行为的一些假设。 简而言之说:单元测试是一段代码(通常一个方法)调用另外一段代码,随后检验一些假 ...
Overview ChromeDriver and Selenium are tools for automated testing of Chromium based applications. The tests themselves can be written in a number of ...
分类:
编程语言 时间:
2020-01-21 00:21:31
阅读次数:
234
1.1 软件测试的定义 追本溯源,什么是软件测试?先我们看看一些著名的对软件测试的定义。 l Testing is the process of establishing confidence that a program or system does what it is supposed to ...
分类:
其他好文 时间:
2020-01-19 19:02:58
阅读次数:
81
HTMLTestRunner.py """A TestRunner for use with the Python unit testing framework. Itgenerates a HTML report to show the result at a glance.The simples ...
分类:
其他好文 时间:
2020-01-19 00:05:51
阅读次数:
141
工具简介 Evosuite是国外大学机构主导开发的一款开源的Java单测代码生成工具,在数次SBST Unit Testing Tool Competition中评测获得最高分。官网地址:http://www.evosuite.org/。 Evosuite的主要特性(翻译自官网): 1.对于指定类, ...
分类:
其他好文 时间:
2020-01-18 19:38:08
阅读次数:
378
func TestGolang(t *testing.T) { fmt.Println(A()) // 0 fmt.Println(*B()) // 1 fmt.Println(C()) // 1 fmt.Println(D()) // 0}func A() int { var result int... ...
分类:
其他好文 时间:
2020-01-14 16:14:51
阅读次数:
88
Stat 27850/30850: Problem set 11. Consider a multiple testing scenario where we are testing the global null. Suppose that you have n p-valuesP1, . . . ...
分类:
其他好文 时间:
2020-01-10 20:33:50
阅读次数:
69
Problem: In web UI automation testing, we always need to upload files, it will work well on local machines, but doesn't work on remote node machines w ...
分类:
系统相关 时间:
2020-01-03 13:54:50
阅读次数:
86
软件开发过程中的环境简介 软件开发生命周期包含很多活动,如计划,分析,设计,开发,不同类型的测试,部署,运维。这些活动发生在不同的环境. 我们对其环境分类为 development, testing, staging, and production environments ,如下图:1、开发环境d... ...
分类:
其他好文 时间:
2019-12-28 13:27:50
阅读次数:
522