- 博客(10)
- 收藏
- 关注
原创 单元测试 总结
1.1单元测试的目标: 功能逻辑正确1 正确编码 2 流入流出3 内部数据完整性4 边界值 正确5 特定逻辑覆盖1.2 代码如何测试1.如何测 评价标准: 代码覆盖率 覆盖步骤 : (1)转化为流程图 (2)分析流程图 选择需覆盖的代码 (3)确定测试数据生成测试用例 测试用例: 输入 执行条件 预期结果 2.白盒测试(结构化测试) (基于代码) ...
2018-05-05 10:13:37 1722
原创 软件测试 系统功能测试 总结(3)
3.9 探索式测试 目标:找到bug 对比 探索测试 及 脚本测试(script test) 探索式测试管理:
2018-05-05 10:12:53 986
原创 软件测试 系统功能测试 总结(2)
3.2 黑盒测试1 数据驱动方法 基于输入数据的测试 等价类划分方法(EPM) 等价类 : 有效等价类 无效等价类 边界值方法(BVA Boundary Value Analysis) 边界值 最靠近边界值的值( 边界值左边 和 右边的值 ) ...
2018-05-01 15:31:45 5779
转载 mysql使用问题总结
21分钟MySQL入门 http://www.cnblogs.com/mr-wid/archive/2013/05/09/3068229.html#c3官方下载页:http://dev.mysql.com/downloads/mysql/5.1.html#downloads )MySQL Community Server 下载版本 5.7.21 mysql启动失败:mysql服务无法启动 服务没...
2018-04-28 15:44:36 183
原创 链表插入排序
package LeetCode;//题目描述//Sort a linked list using insertion sort. import java.util.*;public class insertionSortList { public static void main(String[] args) { ListNode a=new ListNode(2); Lis...
2018-04-22 17:01:16 102
原创 binary_tree_maxPathSum
题目描述Given a binary tree, find the maximum path sum. The path may start and end at any node in the tree. For example: Given the below binary tree, 1 / \ 2 3 Return6.import java...
2018-04-22 10:59:11 150
原创 Java 排序算法集锦
package sorts;import java.util.*;public class Sorts { public static void main(String[] args) { int[] arr_0= {1,3,5,4,2,8,9,10,11,89}; int[] arr_1= {0,1,3,5,4,2,8,9,10,11,89}; int[] L1=arr...
2018-04-22 10:29:09 203
原创 栈 计算四则运算
package LeetCode;// 题目描述//Evaluate the value of an arithmetic expression in Reverse Polish Notation. //Valid operators are+,-,*,/. Each operand may be an integer or another expression. //Some examples...
2018-04-21 21:42:48 365
原创 二叉树寻找最小深度
leetcod题目描述Given a binary tree, find its minimum depth.The minimum depth is thenumber of nodes along the shortest path from the root node down to thenearest leaf node./** * Definiti
2018-04-19 22:57:33 168
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人