Build Your Own Test Framework : A Practical Guide to Writing Better Automated Tests (1st)

個数:
電子版価格
¥10,778
  • 電子版あり

Build Your Own Test Framework : A Practical Guide to Writing Better Automated Tests (1st)

  • 提携先の海外書籍取次会社に在庫がございます。通常3週間で発送いたします。
    重要ご説明事項
    1. 納期遅延や、ご入手不能となる場合が若干ございます。
    2. 複数冊ご注文の場合は、ご注文数量が揃ってからまとめて発送いたします。
    3. 美品のご指定は承りかねます。

    ●3Dセキュア導入とクレジットカードによるお支払いについて
  • 【入荷遅延について】
    世界情勢の影響により、海外からお取り寄せとなる洋書・洋古書の入荷が、表示している標準的な納期よりも遅延する場合がございます。
    おそれいりますが、あらかじめご了承くださいますようお願い申し上げます。
  • ◆画像の表紙や帯等は実物とは異なる場合があります。
  • ◆ウェブストアでの洋書販売価格は、弊社店舗等での販売価格とは異なります。
    また、洋書販売価格は、ご注文確定時点での日本円価格となります。
    ご注文確定後に、同じ洋書の販売価格が変動しても、それは反映されません。
  • 製本 Paperback:紙装版/ペーパーバック版/ページ数 269 p.
  • 言語 ENG
  • 商品コード 9781484292464
  • DDC分類 005.14

Full Description

Learn to write better automated tests that will dramatically increase your productivity and have fun while doing so. This book is a build-your-own adventure designed for individual reading and for collaborative workshops. 
You will build an xUnit automated test framework using JavaScript: initially a clone of Jest, but adding a couple of neat features borrowed from RSpec, the genre-defining tool for behavior-driven development (BDD). Along the way, you will explore the philosophy behind automated testing best practices. The automated test runner is one of the most important innovations within software engineering. But for many programmers, automated testing remains a mystery, and knowing how to write good tests is akin to sorcery.
As the chapters of this book unfold, you will see how the humble test runner is an elegant and simple piece of software. Each chapter picks a single feature to build, like the "it" function or the "beforeEach" block. It picks apart the theory of why the feature needs to exist, and how to use it effectively in your own test suites. Every chapter ends with a set of ideas for extension points should you wish to explore further, alone or in groups. The book culminates in an implementation of test doubles and mocks—one of the most difficult and misunderstood concepts within automated testing.
By the end of the book, you will have gained a solid understanding of automated testing principles that you can immediately apply to your work projects. 
What You'll Learn

Build an xUnit automated test framework
See how an automated test runner works
Understand the best practices for automated unit testing
Effectively use test doubles and mocks

Who This Book Is For

Software developers with JavaScript experience who are seeking to master the art of automated testing. 

Contents

Chapter 1: Creating an NPM Package of My Very Own.- Chapter 2: Building it to Define a Test.- Chapter 3: Grouping Tests with Describe.- Chapter 4: Promoting Conciseness with BeforeEach and AfterEach.- Chapter 5: Improving Legibility with Expect.- Chapter 6: Formatting Expectation Errors.- Chapter 7. Automatically Discovering Test Files.- Chapter 8: Focusing on Tests with It.Only and Describe.Only.- Chapter 9: Supporting Asynchronous Tests.- Chapter 10: Reporting.- Chapter 11: Sharing Behavior with it.BehavesLike.- Chapter 12: Tagging Tests.- Chapter 13 : Skipping Tests.- Chapter 14 : Randomizing Tests.- Chapter 15. Understanding test doubles.- Chapter 16. Module Mocks.