码迷,mamicode.com
首页 >  
搜索关键字:fault    ( 450个结果
error,fault, failure
1, findLast() (1) The fault is that the state of the loop should be: for(int i = x.length-1;i >= 0;i--) Because if the expected index is in x[0], when
分类:其他好文   时间:2016-03-09 12:24:36    阅读次数:173
软件测试第二次作业
知识点内容回顾: 主要介绍了三个概念之间的区别 首先说最根本问题 Fault,什么事falut呢,代码中存在的问题,也就是和运行环境啊什么的没关系,你的代码就是有问题的,换句话说,你的实现是有问题的,但是这个问题不一定会被触发也不一定会导致error,但是无论是否导致了error都是有fault的。
分类:其他好文   时间:2016-03-09 01:42:49    阅读次数:153
软件测试技术 homework2
Code 1 1.fault是迭代的条件应该是 i >= 0 而不是 i > 0 2.当测试用例是 [3,2,1],1 时。 3.当测试用例是 [2,3,4],1 。 4.当测试用例是 [2],1 。 Code 2 1.fault是应该逆序迭代,正确为for(int i = x.length-1;i
分类:其他好文   时间:2016-03-08 23:51:37    阅读次数:154
Liam的软件测试学习历程(二):查找错误的两道例题
观察两段代码并回答下列问题: (1) 发现错误代码; (2) 试着编写测试用例,不执行fault部分; (3) 执行fault部分,但不出现error情况; (4) 出现error情况,但不发生failure。 代码一: public int findLast (int[] x, int y) {
分类:其他好文   时间:2016-03-08 23:41:59    阅读次数:164
软件测试(二)
第二次作业 对于以下两个程序 1、找出fault 2、如果可能的话,找出一个测试用例不执行fault 3、如果可能的话,找出一个测试用例执行fault,但是不产生error 4、如果可能的话,找出一个测试用例产生error,但是不会导致failure public intfindLast(int[]
分类:其他好文   时间:2016-03-08 13:22:52    阅读次数:117
【软件测试】错误分析(homework2)
1)了解错误类型: Fault : A static defect in the software.【一个静态的在软件中产生的错误。】 Failure : External, incorrect behavior with respect to the requirements or other d
分类:其他好文   时间:2016-03-08 00:32:42    阅读次数:155
软件测试(二)之 Failure, Error & Fault
知识回顾 软件测试中的错误主要分为三种:Failure, Error 和 Fault。 下面就分析一下它们的不同: Fault的定义:可能导致系统或功能失效的异常条件(Abnormal condition that can cause an element or an item to fail.),
分类:其他好文   时间:2016-03-07 12:00:55    阅读次数:146
MillWheel: Fault-Tolerant Stream Processing at Internet Scale
http://static.googleusercontent.com/media/research.google.com/zh-CN//pubs/archive/41378.pdf 为什么要做MillWheel? 因为当前的其他的流式系统,无法同时满足 fault tolerance, versa...
分类:Web程序   时间:2016-02-22 20:42:14    阅读次数:217
VMWare vCenter Converter converter.fault.ManagedDiskOpenFault错误
这个错误在不超过5%时发生,导出日志,里面有个task-1-diag-20141124155205-zdvmlo.zip,解开里面有个文件vmware-converter-agent-1.log,看文件名应该是由被转换服务器上面安装的agent生成的,内容有如下距离错误最近的片段:2014-11-25T00:00:02.296+08:00[03148error‘task-1..
分类:系统相关   时间:2016-02-19 01:48:46    阅读次数:299
3. Coredump故障分析
3. Coredump故障分析 一、定义:Core Dump又叫核心转存。当程序在运行过程中发生异常,这时Linux系统可以把程序出错时的内存内容存储在一个core文件中,这种过程叫Core Dump。 二、Segment fault:这是Core Dump主要解决的错误。Linux应用程序在运行过...
分类:其他好文   时间:2016-02-14 09:09:45    阅读次数:145
450条   上一页 1 ... 25 26 27 28 29 ... 45 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!