Close
Contact Us info@learnquest.com

??WelcomeName??
??WelcomeName??
« Important Announcement » Contact Us 877-206-0106 | USA Flag
Close
Close
Close
photo

Thank you for your interest in LearnQuest.

Your request is being processed and LearnQuest or a LearnQuest-Authorized Training Provider will be in touch with you shortly.

photo

Thank you for your interest in Private Training.

We look forward to helping you develop the perfect training solution to help you meet your company's goals.

For immediate assistance, speak with one of our representatives using the chat module below. Otherwise, LearnQuest or a LearnQuest-Authorized Training Provider will be in touch with you shortly.

Close
photo

Thank you for your interest in LearnQuest!

Now, you will be able to stay up-to-date on our latest course offerings, promotions, and training discounts. Watch your inbox for upcoming special offers.

title

Date: xxx

Location: xxx

Time: xxx

Price: xxx

Please take a moment to fill out this form. We will get back to you as soon as possible.

All fields marked with an asterisk (*) are mandatory.

Test Driven Development (TDD) and Unit Testing Essentials

Price
1,755 USD
3 Days
EJCJ-521
Classroom Training, Online Training
Other

AWS Training Pass

Take advantage of flexible training options with the AWS Training Pass and get Authorized AWS Training for a full year.

Learn More

Prices reflect a 22.5% discount for IBM employees (wherever applicable).
Prices reflect a 24% discount for Kyndryl employees (wherever applicable).
Prices reflect the Accenture employee discount.
Prices shown are the special AWS Partner Prices.
Prices reflect the Capgemini employee discount.
Prices reflect the UPS employee discount.
Prices reflect the ??democompanyname?? employee discount.
GSA Private/Onsite Price: ??gsa-private-price??
For GSA pricing, please go to GSA Advantage.

Class Schedule

Delivery Formats

Sort results

Filter Classes

Guaranteed to Run

Modality

Location

Language

Date

  • Date: 27-May-2024 to 29-May-2024
    Time: 9AM - 5PM US Eastern
    Location: Virtual
    Language: English
    Delivered by: LearnQuest
    Price: 1,755 USD
  • Date: 8-Jul-2024 to 10-Jul-2024
    Time: 9AM - 5PM US Eastern
    Location: Virtual
    Language: English
    Delivered by: LearnQuest
    Price: 1,755 USD
  • Date: 19-Aug-2024 to 21-Aug-2024
    Time: 9AM - 5PM US Eastern
    Location: Virtual
    Language: English
    Delivered by: LearnQuest
    Price: 1,755 USD
  • Date: 30-Sep-2024 to 2-Oct-2024
    Time: 9AM - 5PM US Eastern
    Location: Virtual
    Language: English
    Delivered by: LearnQuest
    Price: 1,755 USD
  • Date: 11-Nov-2024 to 13-Nov-2024
    Time: 9AM - 5PM US Eastern
    Location: Virtual
    Language: English
    Delivered by: LearnQuest
    Price: 1,755 USD
View Global Schedule

Course Description

Overview

Test Driven Development (TDD) and Unit Testing Essentials is a three-day, comprehensive hands-on test-driven development / JUnit / TDD training course geared for developers who need to get up and running with essential Test-driven development programming skills using JUnit and various open-source testing frameworks. Throughout the course you'll learn, explore and gain practical experience working with best practices for writing great programs in Java, using test-driven development techniques. This course quickly introduces you to the core features and benefits of JUnit. You'll leave this course armed with the skills required to leverage solid test driven development and unit testing techniques, using the latest industry techniques and best practices.


 

Objectives

During this course, students will learn:
  • The role of Unit Testing in software development and testing
  • How to write effective Unit Testing
  • The properties of effective unit tests
  • The benefits of the test-first and Test-Driven Development
  • Techniques and practices to aid in the successful adoption of Test-Driven Development
  • JUnit and the JUnit Test Runner interface.
  • How to use JUnit to drive the implementation of Java code.
  • The role of debugging when done in conjunction with tests.
  • The fundamentals of the TDD using Java, as well as its importance, uses, strengths and weaknesses.
  • Understand how JUnit affects your perspective on development and increases your focus on a task.
  • Good JUnit coding style.
  • How to Create well-structured JUnit programs.
  • How to Compile and execute programs using JUnit and DBUnit
  • How to extend testing with mock objects using Mockito.
  • Refactoring techniques available to make code as reusable/robust as possible.
  • Various testing techniques.

Audience

This programming course is for experienced Java developers.
 

Prerequisites


     

Topics

  • Introducing Test-driven Development Test-Driven Development
    • Rationale for TDD
    • The process of TDD
    • Advantages to TDD
    • Side-effects of TDD
    • Tools to support TDD
    • Tutorial: Setup IntelliJ for Using Maven
  • Unit Testing using JUnit Unit Testing Fundamentals
    • Purpose of Unit Testing
    • Good Unit Tests
    • Test Stages
    • Unit Testing Vs Integration Testing
    • Understanding Unit Testing Frameworks
  • Jumpstart: JUnit 5.x
    • Understand and work with the features of JUnit
    • Write unit tests using @Test annotation
    • Test Result Verification (Assertions)
    • Manage fixtures using @BeforeEach, @AfterEach, @BeforeAll and @AfterAll annotations
    • Maven setup using Surefire plugin
    • Lab: Demo JUnit
    • Lab: Build JUnit Case Study
    • Lab: Jumpstart JUnit
    Annotations
    • Use @DisplayName to specify a custom name for the test
    • Check for exceptions thrown by test
    • Use @Disabled to prevent a test class or method from running
    • Use timeouts to fail test that take longer than required
    • Test Execution Order
    • Lab: Working with @Test Annotation
    Hamcrest
    • Learn the notation of assertThat
    • Know the objective of Hamcrest library
    • Use Hamcrest's logical and object matchers
    • Use Hamcrest's number and collection matchers
    • Lab: Working with Hamcrest
    Parameterized Tests
    • The @ParameterizedTest annotation
    • A parameterized test to test code under several conditions
    • Define different sources for test data (@ValueSource, @CsvSource, @CsvFileSource,@EnumSource, @MethodSource, @ArgumentSource)
    • Lab: Working with Parameterized Tests
    Advanced Features
    • JUnit 4 vs JUnit 5
    • Nested Unit Tests
    • Repeated Tests
    • JUnit Extensions
    • ExecutionConditions
    • Lambda Support
    • Grouped Assertions
    • Lab: Working with Advanced Features
    JUnit Best Practices
    • 'Good' Tests
    • Bad Smell
    • White-Box Unit Testing
    • Black-Box Unit Testing
    • Automation and Coverage
  • Mocking Mocking of Components
    • Why We use Test Dummies
    • Mock Objects
    • Working with Mock Objects
    • Using Mocks with the User Interface
    • Mock Object Strategies
  • Mock Objects and Mockito
    • Mockito Description and Features
    • Mockito Object Lifecycle
    • JUnit 5 and Mockito Dependency Injection
    • Stubs Using ArgumentMatchers
    • Verifying Behavior in Mockito
    • Partial Mock Objects
    • The Spy annotation
    • Lab: Mock Object and Mockito
    PowerMock
    • PowerMock Description and Features
    • Using PowerMockito
    • @PrepareForTest
    • Mocking a final class or final method
    • Mocking a Static Method
  • Advanced Topics State-based vs. Interaction-based Testing
    • State-based Testing
    • Interaction-based Testing
    • Mock Objects Support Each Approach
    • Three Areas to Check in a Test
    • Lab: Interaction-based Testing
  • Improving Code Quality Through Refactoring
    • Refactoring Overview
    • Refactoring and Testing
    • Refactoring to Design Patterns
    • Lab: Refactoring
    • Lab: Best Practices - Refactoring Tests
    Database Testing: DbUnit
    • Setting up DbUnit
    • Defining a Dataset File in XML, CSV or Excel
    • Writing a DbUnit Test Class
    • Assert the results
    • Use the FailureHandler and ValueComparer
    • Using Date and Time in test sets
    • Export a data set
    • Lab: Introduction to DbUnit
    • Lab: DbUnit Assertions
    • Lab: Selenium and DbUnit
    2023 Top 20 Training Industry Company - IT Training

    Need Help?

    Call us at 877-206-0106 or e-mail us at info@learnquest.com

    Personalized Solutions

    Need a personalized solution for your Training? Contact us, and one of our training advisors will help you find the best solution.

    Contact Us

    Need Help?

    Do you have a question about the courses, instruction, or materials covered? Do you need help finding which course is best for you? We are here to help!

    Talk to us

    20% Off All AI Training Courses

    Achieve more with AI-powered tools and strategies.

    PROMO CODE: AI20
    VALID THROUGH APRIL 30, 2024

    20% Off All AI Training Courses

    Self-Paced Training Info

    Learn at your own pace with anytime, anywhere training

    • Same in-demand topics as instructor-led public and private classes.
    • Standalone learning or supplemental reinforcement.
    • e-Learning content varies by course and technology.
    • View the Self-Paced version of this outline and what is included in the SPVC course.
    • Learn more about e-Learning

    Course Added To Shopping Cart

    bla

    bla

    bla

    bla

    bla

    bla

    Self-Paced Training Terms & Conditions

    ??spvc-wbt-warning??
    ??group-training-form-area??
    ??how-can-we-help-you-area??
    ??personalized-form-area??
    ??request-quote-area??

    Sorry, there are no classes that meet your criteria.

    Please contact us to schedule a class.
    Close

    self-paced
    STOP! Before You Leave

    Save 0% on this course!

    Take advantage of our online-only offer & save 0% on any course !

    Promo Code skip0 will be applied to your registration

    Close
    Nothing yet
    here's the message from the cart

    To view the cart, you can click "View Cart" on the right side of the heading on each page
    Add to cart clicker.

    Purchase Information

    ??elearning-coursenumber?? ??coursename??
    View Cart

    Need more Information?

    Speak with our training specialists to continue your learning journey.

     

    Delivery Formats

    Close

    By submitting this form, I agree to LearnQuest's Terms and Conditions

    heres the new schedule
    This website uses third-party profiling cookies to provide services in line with the preferences you reveal while browsing the Website. By continuing to browse this Website, you consent to the use of these cookies. If you wish to object such processing, please read the instructions described in our Privacy Policy.
    Your use of this LearnQuest site affirms your consent to our use of session and persistent cookies to track how you use our website.