Unittest Unittest框架简析 什么是unittest框架 unittest框架有4个重要概念:test fixture / test case / test suite / test runner Test case的实例就是一个测试用例,一个完整的测试流程 1. 测试准备前环境的搭建 ...
分类:
其他好文 时间:
2020-05-05 17:51:13
阅读次数:
60
1 package com.bawei.review01 2 3 import org.apache.spark.rdd.RDD 4 import org.apache.spark.sql.{DataFrame, SparkSession} 5 6 case class StuScore(id:In ...
分类:
其他好文 时间:
2020-05-05 17:49:28
阅读次数:
54
$$ \begin{cases}a+b=10 \\2a b=30\end{cases} $$ $$ \int{x}dx\int_{1}^{2}{x}dx\frac{1}{2}x^2y_1\sqrt{2}\vec{a} $$ $$ \lim_{n\rightarrow+\infty} $$ $$ \l ...
分类:
其他好文 时间:
2020-05-05 17:40:14
阅读次数:
76
1. 首先创建reports 和 test_case。 2. 下载BStestrunner。 目的用来生成html报告。下载下来放到 目录下。 3. 创建 run.py模块。目的运行测试用例。 import unittest from btsrunner import btsrunner impor ...
分类:
编程语言 时间:
2020-05-05 00:43:26
阅读次数:
150
前言 直接可以把这个配置覆盖掉现在安装目录Vim底下的 "_vimrc" 文件 "效果图" Code: THE END ...
分类:
系统相关 时间:
2020-05-04 23:03:34
阅读次数:
84
一 文献题目: Genome wide DNA methylation profiles of low and high grade adenoma reveals potential biomarkers for early detection of colorectal carcinoma 不想 ...
分类:
其他好文 时间:
2020-05-03 20:40:45
阅读次数:
81
https://www.esmap.cn/sdk-demo/demo/Case/Park/index.html?id=test666&styleid=1004&t=cnb https://www.esmap.cn/escopemap/content/cn/member/mapdownload.htm ...
分类:
其他好文 时间:
2020-05-03 01:07:17
阅读次数:
132
01、值类型和引用类型 GO只有slice、map、chan 3种引用类型,其它都是值类型 02、slice引用拷贝 1 package main 2 3 import ( 4 "fmt" 5 ) 6 7 func appendSlice(s []int) { 8 s[0] = 10//成功修改ma ...
分类:
其他好文 时间:
2020-05-02 22:37:07
阅读次数:
54
其实如果这是一颗树的话很好搞,把$s$到$lca(s,t)$ 向上连,$lca(s,t)$到$t$向下连即可(然而事情并不是这样子的...)。 我们考虑什么样的情况是一定可行的呢?每两个点之间都有两条以上的路径,那就可以一边向前,一边向后,绝对可以。也就是求双联通分量以内是一定可以的,所以考虑缩点。 ...
分类:
Web程序 时间:
2020-05-02 22:36:49
阅读次数:
81
将后端传来的数据转为要展示的数据: {name:'手机',state:'0'}, {name:'电脑',state:'1'}, {name:'包包',state:'2'}, {name:'衣服',state:'1'}将state对应的值转为要展示的值 window.onload = function ...
分类:
其他好文 时间:
2020-05-02 19:04:19
阅读次数:
76