摘要: 第五章 软技能 5.1 沟通协商 1、测试的视角? 需求是否可以测试,需要怎么测试,怎么样才算验证通过? 设计是否可以测试,需要怎么测试,怎么样才算验证通过? 从功能性、可靠性、易用性、效率、可移植性、可扩展性的角度去考虑。(非功能方面:性能、可靠性、安全性、易用性、可移植性、可测试性) 2、开发可 阅读全文
posted @ 2019-09-27 17:35 bcaixl 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 1、遗留问题跟踪表(5-1) 2、用例设计指导规范(???) 包括内容有用例的组织方式,描述和用例的颗粒度以及用例的设计方法等。 3、通用测试用例模板 4、需求确认测试情况 是() 否() PASS() FAILED() BLOCK() 是() 否() PASS() FAILED() BLOCK() 阅读全文
posted @ 2019-09-27 17:35 bcaixl 阅读(738) 评论(0) 推荐(0) 编辑
摘要: 题目: Consider an array of sheep where some sheep may be missing from their place. We need a function that counts the number of sheep present in the arr 阅读全文
posted @ 2019-09-27 09:24 bcaixl 阅读(320) 评论(0) 推荐(0) 编辑
摘要: 题目: In this simple exercise, you will create a program that will take two lists of integers, a and b. Each list will consist of 3 positive integers ab 阅读全文
posted @ 2019-09-24 12:08 bcaixl 阅读(526) 评论(0) 推荐(0) 编辑
摘要: 题目: Create a method that takes an array/list as an input, and outputs the index at which the sole odd number is located. This method should work with 阅读全文
posted @ 2019-09-23 17:33 bcaixl 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 题目: Complete the square sum function so that it squares each number passed into it and then sums the results together. For example, for [1, 2, 2] it s 阅读全文
posted @ 2019-09-20 11:04 bcaixl 阅读(296) 评论(0) 推荐(0) 编辑
摘要: 题目: Scenario Now that the competition gets tough it will Sort out the men from the boys . Men are the Even numbers and Boys are the odd Task Given an  阅读全文
posted @ 2019-09-19 14:15 bcaixl 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 题目: Modify the spacify function so that it returns the given string with spaces insertedbetween each character. 解题办法: 用时:5分59秒 知识点: 1、str转化为list:list( 阅读全文
posted @ 2019-09-18 14:32 bcaixl 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 题目: You are given an input string. For each symbol in the string if it's the first character occurence, replace it with a '1', else replace it with th 阅读全文
posted @ 2019-09-17 11:58 bcaixl 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 题目: Complete the solution so that it returns true if the first argument(string) passed in ends with the 2nd argument (also a string). Examples: 解题办法: 阅读全文
posted @ 2019-09-16 10:04 bcaixl 阅读(199) 评论(0) 推荐(0) 编辑