error Failed to install the app. Make sure you have the Android development environment set up: https://facebook.github.io/react-native/docs/getting-s ...
分类:
移动开发 时间:
2020-02-01 19:49:03
阅读次数:
142
什么是软件测试 软件测试 (英语: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
创建Nuget模板 目的 这样做,当然是为了以后建立同样的项目时,方便一点,统一目录结构 过程 1. 当然首先需要一个能编译通过的项目,我建的是解决方案,同理 2. 在解决方案目录下建立配置文件,目录结构如图: 3. 配置文件 内容 4. 其它的,参照官网的例子就能创建成功 参考 "Catcher ...
分类:
其他好文 时间:
2020-01-11 18:53:48
阅读次数:
110
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