摘要:
Understand the testing effort by analyzing the requirements of project.Estimate and obtain management support for the time, resources and budget required to perform the testing.Organize the testing kick-off meetingDefine the StrategyBuild a testing team of professionals with appropriate skills, atti 阅读全文
2010年12月13日 #
2010年11月25日 #
摘要:
1. DB setupVS2010執行Load Test時需要DB存放結果, 原來VS安裝時還有個.sql檔存放在: C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\loadtestresultsrepository.sql, 執行後就可以建立這個DB了。2.http://www.dotnetfunda.com/articles/... 阅读全文
2010年10月25日 #
摘要:
First the actual accounts:Local System (System): Completely trusted account, moreso than the administrator account. There isnothing on a single box that thisaccount can not do and it has theright to a... 阅读全文
2010年10月21日 #
摘要:
Alifebook can be a great healing toolfor a foster or adopted child. Some children move so often due to the foster care system or failed adoptions, that much of their life story is lost. A lifebook tel... 阅读全文
2010年10月12日 #
摘要:
I first heard the term, Scrumbut, introduced by Mike Cohn at a Denver Agile User Group meeting. The term is used to describe peoplewho might say, “We follow Scrum but … we don’t do ... 阅读全文
摘要:
一次HTTP操作称为一个事务,其工作过程可分为四步: 首先客户机与服务器需要建立连接。只要单击某个超级链接,HTTP的工作就开始了。 建立连接后,客户机发送一个请求给服务器,请求方式的格式为:统一资源标识符(URL)、协议版本号,后边是MIME信息包括请求修饰符、客户机信息和可能的内容。 服务器接到请求后,给予相应的响应信息,其格式为一个状态行,包括信息的协议版本号、一个成功或错误的代码,后... 阅读全文
摘要:
一 什么是Scrum?Scrum (英式橄榄球争球队), 软件开发模型是敏捷开发的一种,在最近的一两年内逐渐流行起来。Scrum的基本假设是:开发软件就像开发新产品,无法一开始就能定义软件产品最终的规程,过程中需要研发、创意、尝试错误,所以没有一种固定的流程可以保证专案成功。Scrum 将软件开发团队比拟成橄榄球队,有明确的最高目标,熟悉开发流程中所需具备的最佳典范与技术,具有高度自主权,紧密地沟... 阅读全文
2010年10月9日 #
摘要:
之前听过这个词,一直对这个概念很模糊,今天查了一下。1.是测试范围更窄的回归测试,它只关心一部分功能。sanity test通常窄而深。 2.通常没有相应的记录文档。 3.主要用来验证在系统经过一个小的改动后其某一部分小功能没有问题。 4.是一种粗略的测试,它是回归测试的一个子集。 5 用来验证系统是否满足规格说明 阅读全文
2010年9月26日 #
摘要:
Introduction: As we covered in various articles in the Testing series there are various levels of testing: Unit Testing, Integration Testing, System Testing Each level of testing builds on the previou... 阅读全文
2010年9月21日 #
摘要:
今天拿出一点时间,对这几个C#访问修饰符重新理解了一下:类和成员均有访问修饰符。类只能用public, Internal来修饰,默认值:public成员能用以下5种来修饰,默认值:PrivatePrivate: 类自身调用Protected: 以包含Protected 的类开始,延伸到所有派生类,均可访问Public:不用多说, 所有的类均可访问Internal: 同一个程序集中的所有类均可访问,可以想象成Public 的其中一个程序集集合。Internal Protected: Internal 和 Protected的并集, 同一个程序集中的所有类,以及所有程序集中的子类。 阅读全文