[root@NMS src]# yum search mariadb Last metadata expiration check: 0:46:24 ago on Fri 02 Jul 2021 08:18:32 PM CST. Name Exactly Matched: mariadb maria ...
分类:
数据库 时间:
2021-07-05 16:58:36
阅读次数:
0
Visual Studio 的测试管理工具虽然集成了 Google Test 测试框架,但缺少 QtTest 测试框架的支持,所以需要在 Google Test 集成 Qt 框架完成单元测试。 背景介绍 因为代码中不免需要编写单元测试,而且可能一个 VC 项目中带有若干个测试用例,这时难免有运行调试 ...
分类:
其他好文 时间:
2021-06-13 10:34:12
阅读次数:
0
cURL is one of most powerful tools for testing HTTP traffic. We typically use cURL to interact with HTTP APIs or test websites. Although cURL supports ...
分类:
Web程序 时间:
2021-06-07 20:18:30
阅读次数:
0
前言 go的测试用例一般分两种 单元测试:主要测试代码可运行正确行,相当于运行一遍编写代码 基准测试:主要是对性能的测试 gotest 的变量 test.short : 一个快速测试的标记,在测试用例中可以使用 testing.Short() 来绕开一些测试 test.outputdir : 输出目 ...
分类:
其他好文 时间:
2021-05-04 16:32:30
阅读次数:
0
![](https://img2020.cnblogs.com/blog/660274/202104/660274-20210424192018327-1679065570.jpg)![](https://img2020.cnblogs.com/blog/660274/202104/660274-2... ...
分类:
数据库 时间:
2021-04-26 13:15:39
阅读次数:
0
Linux Linux是目前应用最广泛的服务器操作系统,基于Unix,开源免费,由于系统的稳定性和安全性,市场占有率很高,几乎成为程序代码运行的最佳系统环境。linux不仅可以长时间的运行我们编写的程序代码,还可以安装在各种计算机硬件设备中,如手机、路由器等,Android程序最底层就是运行在lin ...
分类:
系统相关 时间:
2021-04-16 12:05:25
阅读次数:
0
针对Android 7.0及以上版本的系统,不信任用户添加的证书,无法抓HTTPS包问题的解决方法。 1、无需root,使用XPosed框架+JustTrustMe :https://www.cnblogs.com/xiaochao-testing/p/13985602.html 2、在APK包可以 ...
分类:
移动开发 时间:
2021-03-17 14:27:54
阅读次数:
0
Coding Practice | 编程实践 基础篇 Clean Code 《代码整洁之道》Pragmatic Unit Testing 《单元测试之道》The Productive Programmer 《卓有成效的程序员》Test-Driven Development By Example 《测 ...
分类:
其他好文 时间:
2021-03-09 13:46:28
阅读次数:
0
npm init -y npm i express mongoose ejs npm i method-override nodemon app.js nodemon seeds/index.js models/campgrounds.js const mongoose = require('mon ...
分类:
其他好文 时间:
2021-02-16 12:42:42
阅读次数:
0
1.断言 标准库 testing "github.com/stretchr/testify/assert" func TestDemo(t *testing.T) { assert.Nil(t, nil) assert.NotNil(t, struct{}{}) assert.Equal(t, 5, ...
分类:
编程语言 时间:
2021-02-16 12:02:30
阅读次数:
0