Leanpub Header

Skip to main content

Filters

Category: "Testing"

Books

  1. The Software Developers’ Guidebook
    The Software Developers’ Guidebook
    A Collection of Modern Engineering Practices
    David Farley and Bernard McCarty (Editor)

    A practical handbook packed with real-world advice to help you write better code, adopt effective developer habits, and build great software.

  2. The C# and .NET Interview Compendium – Second Edition
    The C# and .NET Interview Compendium – Second Edition
    Interview Questions and Answers for C# and .NET Developers
    Yohan Rodriguez

    A practical, modern interview-preparation compendium for C# and .NET developers (615 manuscript pages).

  3. Testing Rails from Scratch
    Testing Rails from Scratch
    A practical, (mostly) out-of-the-box approach to test-driven development in Ruby on Rails
    Aaron Sumner

    Real-world advice for adding reliable tests to your Rails apps with the default tools (mostly), complete with expanded, exclusive content and a full sample application. Learn to test with confidence!

  4. The BDD Books - Formulation (Japanese Edition)
    The BDD Books - Formulation (Japanese Edition)
    BDD/ATDDの第2ステップ:Given/When/Then を使って具体例を定式化する
    Yuya Kazama, Gáspár Nagy, and Seb Rose

    本書籍は、振る舞い駆動開発(BDD)や受け入れテスト駆動開発(ATDD)の定式化フェーズを最大限に活用する方法を提供します。 書籍内では、優れたコラボレーション手法を具体例で示しており、実用的なガイドとなっています。

  5. The BDD Books - Discovery (Japanese Edition)
    The BDD Books - Discovery (Japanese Edition)
    BDD/ATDDの第1ステップ:具体例を使って振る舞いを探索する
    Yuya Kazama, Gáspár Nagy, and Seb Rose

    ウクライナ難民を支援 - 2022年5月末まで延長! この本の売り上げの50%は、 https://unicef.hu/veszhelyzet-ukrajnaban と https://int.depaulcharity.org/fundraising-for-depaul-ukraine/ に寄付されます。 本書籍は、振る舞い駆動開発(Behavior Driven Development, BDD)や受け入れテスト駆動開発(Acceptance Test-Driven Development, ATDD)の発見フェーズを最大限に活用する方法を提供します。

  6. ISTQB® CTFL v4.0 Exam Guide
    ISTQB® CTFL v4.0 Exam Guide
    From Fundamentals to Exam-Ready
    Kadir Çamoğlu

    An English CTFL guide that teaches you not to memorize the correct answer, but to understand why the distractors are wrong. Complete coverage of all six chapters, worked examples for every K3 learning objective, and a full mock exam with detailed answer rationales. Aligned with the CTFL Syllabus v4.0.

  7. Fifty Quick Ideas to Improve Your Tests
    Fifty Quick Ideas to Improve Your Tests
    Gojko Adzic, David Evans, and Tom Roden

    This book is for cross-functional teams working in an iterative delivery environment, planning with user stories and testing frequently changing software under tough time pressure. This book will help you test your software better, easier and faster. Many of these ideas also help teams engage their business stakeholders better in defining key expectations and improve the quality of their software products.

  8. O Guia dos Desenvolvedores de Software (Edição em Português do Brasil)
    O Guia dos Desenvolvedores de Software (Edição em Português do Brasil)
    Uma Coletânea de Práticas Modernas de Engenharia
    David Farley, Bernard McCarty (Editor), and TranslateAI

    Um manual prático repleto de orientações práticas para ajudar você a escrever código melhor, adotar hábitos eficientes de desenvolvedor e construir software de qualidade.

  9. Make Bugs (nearly) Impossible
    Make Bugs (nearly) Impossible
    Resisting human and AI slop in an LLM age.
    Jason Turner

    With the advent of LLMs and AI coding assistants, we are generating code at an ever-accelerating rate. How do we manage this influx of code without getting fatigued and overwhelmed? How do we ensure coding standards are maintained? What practices and tools can we put in place to amplify our efforts while not introducing more bugs?

  10. Rethinking Systems Analysis and Design
    Rethinking Systems Analysis and Design
    General Systems Series: Volume 4
    Gerald M. Weinberg

    Gerald Weinberg's new work will be good reading not only for designers but for anyone wanting to understand design, particularly the users and managers of information systems. . . . life lessons such as those in this book will continue to be the most useful guide there is, both for introducing prospective practitioners and for reminding the old hands of what they may occasionally forget. —International Journal of General Systems

  11. Testing Spring Boot Applications Demystified
    Testing Spring Boot Applications Demystified
    Write Better Tests, Ship Faster: A Practical Guide to Spring Boot Testing
    Philip Riecks

    Spring Boot testing doesn't have to be a nightmare of broken configurations and unreliable tests. This book transforms testing from your biggest frustration into your secret weapon, with proven strategies that work in real projects and examples you can implement today. Demystify testing real-world Spring Boot applications to deliver robust & maintainable code with confidence.

  12. Technical Writing for QA: Documents That Drive Action
    Technical Writing for QA: Documents That Drive Action
    Test Plans, Bug Reports, RCAs, and Knowledge Management
    Yuri Syuganov

    Documents that drive action: test plans people read, bug reports that get fixed, RCAs that prevent repeats, and docs that outlive team turnover.

  13. What to Look for in a Code Review
    What to Look for in a Code Review
    Effective tips for reviewing code
    Trisha Gee

    Effective Code Review Tips and Tricks

  14. Clean Architectures in Python
    Clean Architectures in Python
    A practical approach to better software design
    Leonardo Giordani

    What is a good software architecture? Why should we bother structuring the code and spending time testing it? If you like spending hours debugging your programs or staying late at the office to recover from a buggy deploy in production this book is definitely NOT for you!

  15. Build a Database Server
    Build a Database Server
    Learn how real databases work by following this practical guide to building your own
    Chris Zetter

    Learn how real databases work by following this practical guide to building your own in a programming language of your choice.Build a language from scratch- Create an interpreter that can parse, type check and run SQL queries. Start with running simple queries and build up to more complex ones.Learn SQL (the fun way) - Gain a deeper understanding of SQL. Cover the order of execution of queries, how SQL uses ternary logic and the techniques that databases use to join and group data efficiently. Compare your implementation with databases such as PostgreSQL, MySQL, SQLite and DuckDB.Improve as a programmer- The perfect project to practice how to structure and refactor code as you grow the feature set of your database server. The 200+ included test cases provide a safety net for refactoring your code, giving you freedom to experiment. Learn computer science topics including creating a recursive descent parser, building a type checker and implementing iterators.