功能测试 兼容测试 安装,卸载,升级测试 交叉事件测试 PUSH测试 性能测试(针对手机的性能测试) cpu 内存 流量 电量 流畅度 启动速度 用户体验测试 稳定性测试 业务功能测试 根据测试功能去拆分功能点,再根据功能点去分析测试点 专项测试 1.兼容性测试(专项) 系统 1、android 2 ...
分类:
移动开发 时间:
2021-07-08 17:40:45
阅读次数:
0
sidecar 模式 共享 网络 mount utc 不共享 ipc pid user apiVersion: v1 kind: Pod metadata: name: test-sidecar namespace: default spec: hostname: test-sidecar # 主机 ...
分类:
其他好文 时间:
2021-07-05 18:17:37
阅读次数:
0
Test I get 10 times more traffic from [Google] [1] than from [Yahoo] [2] or [MSN] [3]. ? [1]: http://google.com/ "Google" [2]: http://search.yahoo.com ...
分类:
其他好文 时间:
2021-07-05 18:14:09
阅读次数:
0
不要使用 + 和 fmt.Sprintf 操作字符串 不要使用 + 和 fmt.Sprintf 操作字符串,虽然很方便,但是真的很慢! 我们要使用 bytes.NewBufferString 进行处理。 基准测试如下: + func BenchmarkStringOperation1(b *test ...
分类:
其他好文 时间:
2021-07-05 18:05:25
阅读次数:
0
下面介绍几种 Unity本地记录存储的实现方式。 第一种 Unity自身提供的 PlayerPrefs //保存数据 PlayerPrefs.SetString("Name",mName);PlayerPrefs.SetInt("Age",mAge);PlayerPrefs.SetFloat("Gr ...
分类:
编程语言 时间:
2021-07-05 18:04:52
阅读次数:
0
@Test public void testTime() { var d1 = LocalDate.of(2021,1,1); var d2 = LocalDate.of(2021,7,2); Period p = Period.between(d1, d2); System.out.println ...
分类:
其他好文 时间:
2021-07-02 16:38:05
阅读次数:
0
Grpc对象转proto代码工具 虽然Grpc.Tools可以将proto文件自动生成代理类,但是proto文件得手敲,还容易出错,如果接口比较复杂,定义比较多,这就很头疼了 为了解决这个问题Class2Proto诞生了,使用标准C#对象转换成proto文件,不管是新写的接口,还是老的API接口转G ...
分类:
其他好文 时间:
2021-07-02 16:22:58
阅读次数:
0
1 public static bool IsInPath(string command) 2 { 3 bool isInPath = false; 4 // 判断PATH中是否存在 命令 5 foreach (string test in (Environment.GetEnvironmentVa ...
分类:
其他好文 时间:
2021-07-02 15:52:09
阅读次数:
0
导航 (返回顶部) 1. Installation 2. Configuration配置 2.1 Sound server 声音服务器 2.2 Voices声音 2.3 Manually手动 3. Usage用法 3.1 使用festival 3.2 Interactive交互的 3.3 添加帮助信 ...
分类:
其他好文 时间:
2021-07-02 15:35:29
阅读次数:
0
1.进入MySql数据库 mysql -uroot -p 2.查看数据库show databases; 3.创建数据库(GoTest)CREATE DATABASE GoTest 4.创建数据表()USE GO_TEST;CREATE TABLE `User`( `Id` BIGINT(20) NO ...
分类:
数据库 时间:
2021-07-01 17:27:15
阅读次数:
0