#include "stdafx.h" #include <pthread.h> #include <stdio.h> #include <windows.h> #include <stdio.h> //#include <assert.h> int main(int argc, _TCHAR *a ...
分类:
其他好文 时间:
2020-04-05 18:19:25
阅读次数:
77
让错误抛出 发现其中的问题 # coding=utf-8 from rest_framework.views import exception_handler from rest_framework.exceptions import ErrorDetail from share.dj_custom ...
分类:
其他好文 时间:
2020-04-04 20:32:45
阅读次数:
65
概述 对象实例由对象头、实例数据组成,其中对象头包括markword和类型指针,如果是数组,还包括数组长度; | 类型 | 32位JVM | 64位JVM| | | | | | markword | 32bit | 64bit | | 类型指针 | 32bit |64bit ,开启指针压缩时为32b ...
分类:
编程语言 时间:
2020-04-04 09:53:54
阅读次数:
499
{ 工具类代码 public native static String getAssetStringUseJNI(Context context,String path); 1NDK代码#include <jni.h>#include <assert.h>#include <string.h>#in ...
分类:
移动开发 时间:
2020-04-04 00:14:25
阅读次数:
191
代码如下: 1 #include <stdio.h> 2 #include <pthread.h> 3 #include <sched.h> 4 #include <assert.h> 5 6 static int api_get_thread_policy(pthread_attr_t *attr ...
分类:
编程语言 时间:
2020-04-03 12:03:58
阅读次数:
69
unittest是Python单元测试框架。但它不仅可以适用于单元测试,还可以适用接口自动化测试用例的开发与执行,该测试框架可组织执行测试用例,并且提供了丰富的断言方法,判断测试用例是否通过,最终生成测试结果。今天就总结下如何使用unittest单元测试框架来进行接口自动化测试。 一、导入unitt ...
分类:
编程语言 时间:
2020-03-23 22:10:49
阅读次数:
88
最近工作中用到了pytest,总结一些用法: 1. 安装: pip install pytest 2. 运行: pytest 默认只能识别以test_ 开头的文件和测试用例,如果pytest后面不带文件名,则默认执行当前目录下所有以test_ 开头的文件。 执行某个文件里所有以 test 开头的用例 ...
分类:
编程语言 时间:
2020-03-22 01:39:18
阅读次数:
216
1、使用assert 编写断言 2、触发期望异常的断言 3、特殊数据结构比较优化 针对一些特殊的数据结构间的比较,pytest对结果的显示做了一些优化: 集合、列表等:标记出第一个不同的元素; 字符串:标记出不同的部分; 字典:标记出不同的条目; 4、为失败断言添加自定义的说明 (1)重写__rep ...
分类:
其他好文 时间:
2020-03-21 21:39:37
阅读次数:
50
1.长度超过8位 2.包括大小写字母.数字.其它符号,以上四种至少三种 3.不能有相同长度超2的子串重复 明:长度超过2的子串 输入描述: 一组或多组长度超过2的子符串。每组占一行 #include <stdio.h>#include <stdlib.h>#include <assert.h>#in ...
分类:
其他好文 时间:
2020-03-18 23:56:22
阅读次数:
112
一、raise raise语句手工引发一个异常:,这样做程序不会因异常而终止,而是运行报错 模板: "raise" [expression ["," expression ["," expression]]] 例子: def fun(x,y): if y == 0: raise ZeroDivisi ...
分类:
编程语言 时间:
2020-03-18 14:05:04
阅读次数:
72