• Complain

Sujoy Acharya - Test-Driven Development with Mockito

Here you can read online Sujoy Acharya - Test-Driven Development with Mockito full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2013, publisher: Packt Publishing, genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Sujoy Acharya Test-Driven Development with Mockito
  • Book:
    Test-Driven Development with Mockito
  • Author:
  • Publisher:
    Packt Publishing
  • Genre:
  • Year:
    2013
  • Rating:
    4 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 80
    • 1
    • 2
    • 3
    • 4
    • 5

Test-Driven Development with Mockito: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Test-Driven Development with Mockito" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Learn how to apply Test-Driven Development and the Mockito framework in real life projects, using realistic, hands-on examples

Sujoy Acharya: author's other books


Who wrote Test-Driven Development with Mockito? Find out the surname, the name of the author of the book and a list of all author's works by series.

Test-Driven Development with Mockito — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Test-Driven Development with Mockito" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Test-Driven Development with Mockito

Test-Driven Development with Mockito

Copyright 2013 Packt Publishing

All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews.

Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the author, nor Packt Publishing, and its dealers and distributors will be held liable for any damages caused or alleged to be caused directly or indirectly by this book.

Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information.

First published: November 2013

Production Reference: 1151113

Published by Packt Publishing Ltd.

Livery Place

35 Livery Street

Birmingham B3 2PB, UK.

ISBN 978-1-78328-329-3

www.packtpub.com

Cover Image by David Studebaker (<>)

Credits

Author

Sujoy Acharya

Reviewers

Mike Ensor

Daniel Pacak

Acquisition Editor

Rebecca Youe

Commissioning Editor

Neil Alexander

Technical Editors

Shiny Poojary

Akashdeep Kundu

Copy Editors

Alisha Aranha

Roshni Banerjee

Sarang Chari

Janbal Dharmaraj

Tanvi Gaitonde

Sayanee Mukherjee

Alfida Paiva

Project Coordinator

Sherin Padayatty

Proofreader

Saleem Ahmed

Indexer

Priya Subramani

Graphics

Yuvraj Mannari

Production Coordinator

Melwyn D'sa

Cover Work

Melwyn D'sa

About the Author

Sujoy Acharya works as a software architect with Siemens Technology and Services Pvt. Ltd. (STS). He grew up in a joint family and pursued his graduation in the field of computer science and engineering. His hobbies are watching movies, playing outdoor sports, and downloading the latest movies.

He likes to research upcoming technologies. His major contributions are in the fields of Java, J2EE, Web service, Ajax, GWT, and Spring.

He designs and develops healthcare software products. He has over 10 years of industrial experience and has designed and implemented large-scale enterprise solutions.

I would like to thank my wonderful wife, Sunanda, for her patience and endless support in spending many hours reviewing my draft and providing valuable inputs.

I would also like to thank my mother and late father for their support, blessings, and encouragement.

Last, but not the least, I'd like to thank Neha Nagwekar and the Packt Publishing team for their help and valuable inputs.

About the Reviewer

Mike Ensor is a hands-on software architect who has 16 years of experience in backend development, e-commerce, CMS, distributed systems, and Big Data implementations. Throughout his career he has continually pushed the use of test-driven development, and emphasized the merits of agile-based development. He has been a speaker at past conferences that primarily focusing on implementing emerging testing strategies during software development. Outside of work, Mike is an avid ice hockey player, amateur home brewer, world traveler, and enjoys snowboarding as much as he can.

Daniel Pacak is a self-made Java programmer who fell in love with coding during his studies of Nuclear Physic at Warsaw University of Technology; it was in 2006 when no one cared about TDD. He acquired his professional experience by working on several business-critical projects for clients in the financial services, telecommunications, e-commerce, and the travel industry.

When he's not coding, he enjoys lifting heavy weights in the gym nearest to his office.

I am very thankful to my parents for their support and the first PC they sponsored back in 1998. That was when it all started.

www.PacktPub.com
Support files, eBooks, discount offers and more

You might want to visit www.PacktPub.com for support files and downloads related to your book.

Did you know that Packt offers eBook versions of every book published, with PDF and ePub files available? You can upgrade to the eBook version at > for more details.

At www.PacktPub.com, you can also read a collection of free technical articles, sign up for a range of free newsletters and receive exclusive discounts and offers on Packt books and eBooks.

httpPacktLibPacktPubcom Do you need instant solutions to your IT - photo 1

http://PacktLib.PacktPub.com

Do you need instant solutions to your IT questions? PacktLib is Packt's online digital book library. Here, you can access, read and search across Packt's entire library of books.

Why Subscribe?
  • Fully searchable across every book published by Packt
  • Copy and paste, print and bookmark content
  • On demand and accessible via web browser
Free Access for Packt account holders

If you have an account with Packt at www.PacktPub.com, you can use this to access PacktLib today and view nine entirely free books. Simply use your login credentials for immediate access.

Preface

Test-Driven Development ( TDD ) is an evolutionary approach to development. It offers test-first development where the production code is written only to satisfy a test. The simple idea of writing a test first reduces the extra effort of writing unit tests after coding.

In Test-Driven Development, test doubles and mock objects are extensively used to mock out external dependencies. Mockito is an open source, unit-testing framework for Java; it allows for the creation, verification, and stubbing of a mock object.

The focus of the book is to provide the readers with comprehensive details on how effectively Test-Driven Development with Mockito can be used for software development. The book begins by giving us an overview of TDD and its implementation. The application of Mockito in TDD is explained in separate chapters. Each chapter provides hands-on examples and step-by-step instructions to develop and execute the code.

What this book covers

This book is about Test-Driven Development and the Mockito framework. Each chapter in this book provides hands-on examples, where we look at how to use TDD and various Mockito features in a step-by-step fashion in detail.

, Getting Familiar with TDD , provides an overview on Test-Driven Development, the definition of test, the big picture, and the first TDD example. By the end of this chapter, the reader will be able to understand the core concept of TDD.

, Refactoring Roll the Dice , focuses on getting the reader quickly started with code refactoring and code smells. By the end of this chapter, the reader will be able to identify code smells and refactor the smells.

, Applying TDD , explains the life cycle of TDD and focuses on getting the reader quickly started with Test-Driven Development. By the end of this chapter, the reader will be able to follow the TDD life cycle and write test-first code.

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Test-Driven Development with Mockito»

Look at similar books to Test-Driven Development with Mockito. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Test-Driven Development with Mockito»

Discussion, reviews of the book Test-Driven Development with Mockito and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.