团队博客 测试发布 五饭来了吗队 项目地址: "汉字2048 五饭来了吗队" 测试报告 1. 修复的Bug 2. 场景测试(scenario testing) 3. 测试矩阵(test matrix) 4. 出口条件(exit criteria) 版本发布说明 版本功能 修复的缺陷 运行环境的要求 ...
分类:
其他好文 时间:
2018-11-10 00:54:43
阅读次数:
183
0.常用命令1 1.git中brunch的使用和理解(一定理解brunch的指针理解和分叉) 分支创建 Git 是怎么创建新分支的呢? 很简单,它只是为你创建了一个可以移动的新的指针。 比如,创建一个 testing 分支, 你需要使用 git branch 命令: $ git branch tes ...
分类:
其他好文 时间:
2018-11-06 01:01:54
阅读次数:
290
ABAP 在ABAP类里,本地类(Local Class)里用关键字FOR TESTING声明过的方法, 在单元测试启动后会自动被调用到。 Spring Boot 在Spring及Spring Boot “Convention over configuration”的设定思路里,放在路径src/te ...
分类:
编程语言 时间:
2018-11-04 14:23:20
阅读次数:
180
The static code analysis and linting tool ESLint is the de-facto standard for linting JavaScript projects. In this lesson we’ll see how to install, ru ...
分类:
移动开发 时间:
2018-11-04 11:19:57
阅读次数:
155
题目链接:http://codeforces.com/gym/101873/problem/G 题意: 在点阵上,给出 $N$ 个点的坐标(全部都是在格点上),将它们按顺序连接可以构成一个多边形,求该多边形内包含的格点的数目。 题解: 首先,根据皮克定理 $S = a + \frac{b}{2} - ...
分类:
其他好文 时间:
2018-10-30 00:25:45
阅读次数:
149
转: http://www.testclass.net/locust/introduce/ Locust 官方网站:https://www.locust.io/ Locust 介绍 An open source load testing tool. 一个开源性能测试工具。 define user b ...
分类:
其他好文 时间:
2018-10-27 18:44:59
阅读次数:
98
In this lesson, we’ll get the most fundamental understanding of what an automated test is in JavaScript. A test is code that throws an error when the ...
分类:
编程语言 时间:
2018-10-25 11:05:10
阅读次数:
130
go环境请参考https://www.cnblogs.com/saryli/p/9833253.html Load testing tool to stress MQTT message broker https://github.com/inovex/mqtt-stresser Build Thi ...
分类:
其他好文 时间:
2018-10-22 22:18:01
阅读次数:
239
Testing with asyncio 之前有说过应用开发者不需要将loop当作参数在函数间传递,只需要调用 即可获得。但是在写单元测试时,可能会需要用多个loop(每个测试用一个单独的loop),问题来了:是否为了支持单元测试而要将loop作为函数参数传入呢? 先看个例子。 1. 想象一个cor ...
分类:
其他好文 时间:
2018-10-22 11:36:48
阅读次数:
157