xUnit Test Patterns 2024 pdf epub mobi 电子书


xUnit Test Patterns

简体网页||繁体网页

xUnit Test Patterns 2024 pdf epub mobi 电子书 著者简介


xUnit Test Patterns 电子书 图书目录




点击这里下载
    


想要找书就要到 本本书屋
立刻按 ctrl+D收藏本页
你会得到大惊喜!!

发表于2024-05-13

xUnit Test Patterns 2024 pdf epub mobi 电子书

xUnit Test Patterns 2024 pdf epub mobi 电子书

xUnit Test Patterns 2024 pdf epub mobi 电子书



喜欢 xUnit Test Patterns 电子书 的读者还喜欢


xUnit Test Patterns 电子书 读后感

评分

是本好书,里边包含了很多如何写好测试的建议和模式。 在看了多个模式之后,变可发现重构技巧就是写测试的基础。 而有些代码基本原则就是重构的基础,比如DRY(Do not repeat yourself)

评分

是本好书,里边包含了很多如何写好测试的建议和模式。 在看了多个模式之后,变可发现重构技巧就是写测试的基础。 而有些代码基本原则就是重构的基础,比如DRY(Do not repeat yourself)

评分

是本好书,里边包含了很多如何写好测试的建议和模式。 在看了多个模式之后,变可发现重构技巧就是写测试的基础。 而有些代码基本原则就是重构的基础,比如DRY(Do not repeat yourself)

评分

是本好书,里边包含了很多如何写好测试的建议和模式。 在看了多个模式之后,变可发现重构技巧就是写测试的基础。 而有些代码基本原则就是重构的基础,比如DRY(Do not repeat yourself)

评分

是本好书,里边包含了很多如何写好测试的建议和模式。 在看了多个模式之后,变可发现重构技巧就是写测试的基础。 而有些代码基本原则就是重构的基础,比如DRY(Do not repeat yourself)

类似图书 点击查看全场最低价
出版者:Addison-Wesley
作者:Gerard Meszaros
出品人:
页数:944
译者:
出版时间:2007-05-31
价格:USD 59.99
装帧:Hardcover
isbn号码:9780131495050
丛书系列:The Addison-Wesley Signature Series

图书标签: 测试  xUnit  unit-test  软件测试  test  软件工程  编程  计算机   


xUnit Test Patterns 2024 pdf epub mobi 电子书 图书描述

Automated testing is a cornerstone of agile development. An effective testing strategy will deliver new functionality more aggressively, accelerate user feedback, and improve quality. However, for many developers, creating effective automated tests is a unique and unfamiliar challenge. xUnit Test Patterns is the definitive guide to writing automated tests using xUnit, the most popular unit testing framework in use today. Agile coach and test automation expert Gerard Meszaros describes 68 proven patterns for making tests easier to write, understand, and maintain. He then shows you how to make them more robust and repeatable--and far more cost-effective. Loaded with information, this book feels like three books in one. The first part is a detailed tutorial on test automation that covers everything from test strategy to in-depth test coding. The second part, a catalog of 18 frequently encountered "test smells," provides trouble-shooting guidelines to help you determine the root cause of problems and the most applicable patterns. The third part contains detailed descriptions of each pattern, including refactoring instructions illustrated by extensive code samples in multiple programming languages. Topics covered include * Writing better tests--and writing them faster * The four phases of automated tests: fixture setup, exercising the system under test, result verification, and fixture teardown * Improving test coverage by isolating software from its environment using Test Stubs and Mock Objects * Designing software for greater testability * Using test "smells" (including code smells, behavior smells, and project smells) to spot problems and know when and how to eliminate them * Refactoring tests for greater simplicity, robustness, and execution speed This book will benefit developers, managers, and testers working with any agile or conventional development process, whether doing test-driven development or writing the tests last. While the patterns and smells are especially applicable to all members of the xUnit family, they also apply to next-generation behavior-driven development frameworks such as RSpec and JBehave and to other kinds of test automation tools, including recorded test tools and data-driven test tools such as Fit and FitNesse. Visual Summary of the Pattern Language Foreword Preface Acknowledgments Introduction Refactoring a Test PART I: The Narratives Chapter 1 A Brief Tour Chapter 2 Test Smells Chapter 3 Goals of Test Automation Chapter 4 Philosophy of Test Automation Chapter 5 Principles of Test Automation Chapter 6 Test Automation Strategy Chapter 7 xUnit Basics Chapter 8 Transient Fixture Management Chapter 9 Persistent Fixture Management Chapter 10 Result Verification Chapter 11 Using Test Doubles Chapter 12 Organizing Our Tests Chapter 13 Testing with Databases Chapter 14 A Roadmap to Effective Test Automation PART II: The Test Smells Chapter 15 Code Smells Chapter 16 Behavior Smells Chapter 17 Project Smells PART III: The Patterns Chapter 18 Test Strategy Patterns Chapter 19 xUnit Basics Patterns Chapter 20 Fixture Setup Patterns Chapter 21 Result Verification Patterns Chapter 22 Fixture Teardown Patterns Chapter 23 Test Double Patterns Chapter 24 Test Organization Patterns Chapter 25 Database Patterns Chapter 26 Design-for-Testability Patterns Chapter 27 Value Patterns PART IV: Appendixes Appendix A Test Refactorings Appendix B xUnit Terminology Appendix C xUnit Family Members Appendix D Tools Appendix E Goals and Principles Appendix F Smells, Aliases, and Causes Appendix G Patterns, Aliases, and Variations Glossary References Index

xUnit Test Patterns 2024 pdf epub mobi 电子书

xUnit Test Patterns 2024 pdf epub mobi 电子书
想要找书就要到 本本书屋
立刻按 ctrl+D收藏本页
你会得到大惊喜!!

xUnit Test Patterns 2024 pdf epub mobi 用户评价

评分

关于 Test Double 总结的很不错,力荐。

评分

敏捷开发最没有争议的部分也许就是“持续集成”和“单元测试”了,这也是许多工程实践的基础。例如没有“单元测试”,你无法开始重构。这本书主要就是介绍作者在实践“单元测试”过程中碰到的许多问题,及其解决之道。 本书赢得过2008年Jolt Productivity Award。 作者将其正式出版之前的草稿在http://xunitpatterns.com上公开发布。

评分

主要看了http://www.cnblogs.com/coderzh/archive/2010/01/23/xUnit-Test-Patterns.html 这位博主的读书笔记,对于各种测试对象的总结很经典。

评分

主要看了http://www.cnblogs.com/coderzh/archive/2010/01/23/xUnit-Test-Patterns.html 这位博主的读书笔记,对于各种测试对象的总结很经典。

评分

关于 Test Double 总结的很不错,力荐。

xUnit Test Patterns 2024 pdf epub mobi 电子书


分享链接









相关图书




本站所有内容均为互联网搜索引擎提供的公开搜索信息,本站不存储任何数据与内容,任何内容与数据均与本站无关,如有需要请联系相关搜索引擎包括但不限于百度google,bing,sogou

友情链接

© 2024 onlinetoolsland.com All Rights Reserved. 本本书屋 版权所有