Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Testing Spring Boot App with JUnit, Mockito & Testcontainers, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:06:34
    Course overview and roadmap
  2. Урок 2. 00:06:11
    What is Unit testing and Integration testing?
  3. Урок 3. 00:10:43
    Best practices for Unit testing in Java
  4. Урок 4. 00:07:30
    Create and Set up Spring Boot Project in IntelliJ IDEA
  5. Урок 5. 00:06:08
    Understanding Spring boot starter test dependency
  6. Урок 6. 00:07:53
    Create JPA Entity
  7. Урок 7. 00:05:02
    Create Spring Data JPA repository
  8. Урок 8. 00:06:49
    Repository layer Unit testing overview
  9. Урок 9. 00:05:39
    Spring Boot @DataJpaTest annotation
  10. Урок 10. 00:16:06
    Unit test for save employee operation
  11. Урок 11. 00:09:47
    Unit test for get all employees operation
  12. Урок 12. 00:04:55
    Unit test for get employee by id operation
  13. Урок 13. 00:07:08
    Unit test for get employee by email operation (Spring Data JPA query method)
  14. Урок 14. 00:10:01
    Unit test for update employee operation
  15. Урок 15. 00:04:55
    Unit test for delete employee operation
  16. Урок 16. 00:09:34
    Unit test Spring Data JPA custom query method using JPQL with index parameters
  17. Урок 17. 00:05:37
    Unit test Spring Data JPA custom query method using JPQL with named parameters
  18. Урок 18. 00:08:57
    Unit test Spring Data JPA custom native query with index parameters
  19. Урок 19. 00:03:36
    Unit test Spring Data JPA custom Native query with Named parameters
  20. Урок 20. 00:05:11
    Refactoring JUnit tests to use @BeforeEach annotation
  21. Урок 21. 00:04:03
    Service Layer unit testing overview
  22. Урок 22. 00:07:18
    Create EmployeeService with saveEmployee method
  23. Урок 23. 00:07:33
    Quick Recap of Mockito basics (before writing JUnit tests to use Mock objects)
  24. Урок 24. 00:15:14
    Unit test for EmployeeService saveEmployee method
  25. Урок 25. 00:06:26
    Using @Mock and @InjectMocks annotations to mock the object
  26. Урок 26. 00:10:34
    Unit test for saveEmployee method which throws Exception
  27. Урок 27. 00:07:58
    Unit test for EmployeeService getAllEmployees method - Positive Scenario
  28. Урок 28. 00:04:12
    Unit test for EmployeeService getAllEmployees method - Negative Scenario
  29. Урок 29. 00:08:36
    Unit test for EmployeeService getEmployeeById method
  30. Урок 30. 00:07:00
    Unit test for EmployeeService updateEmployee method
  31. Урок 31. 00:07:53
    Unit test for EmployeeService deleteEmployee method
  32. Урок 32. 00:06:29
    Controller Layer unit testing overview
  33. Урок 33. 00:02:29
    Overview of @WebMvcTestВ annotation
  34. Урок 34. 00:03:11
    @WebMvcTestВ VS @SpringBootTest
  35. Урок 35. 00:05:46
    Build createEmployee REST API
  36. Урок 36. 00:18:59
    Unit test createEmployee REST API
  37. Урок 37. 00:01:32
    Build GetAllEmployees REST API
  38. Урок 38. 00:08:56
    Unit test GetAllEmployees REST API
  39. Урок 39. 00:06:19
    Refactoring JUnit test to use static imports
  40. Урок 40. 00:03:37
    Build getEmployeeById REST API
  41. Урок 41. 00:09:43
    Unit test getEmployeeById REST API - Positive Scenario
  42. Урок 42. 00:04:07
    Unit test getEmployeeById REST API - Negative Scenario
  43. Урок 43. 00:07:45
    Build updateEmployee REST API
  44. Урок 44. 00:13:17
    Unit test updateEmployee REST API - Positive Scenario
  45. Урок 45. 00:05:05
    Unit test updateEmployee REST API - Negative Scenario
  46. Урок 46. 00:02:56
    Build deleteEmployee REST API
  47. Урок 47. 00:06:16
    Unit test deleteEmployee REST API
  48. Урок 48. 00:05:28
    Integration testing overview
  49. Урок 49. 00:04:47
    @SpringBootTest annotation overview
  50. Урок 50. 00:08:41
    Configure MySQL database for integration testing
  51. Урок 51. 00:05:12
    Create a base for Integration testing
  52. Урок 52. 00:05:03
    Integration test for create employee REST API
  53. Урок 53. 00:05:01
    Integration test for get all employees REST API
  54. Урок 54. 00:06:56
    Integration test for get employee by id REST API - Positive & Negative Scenarios
  55. Урок 55. 00:07:08
    Integration test for update employee REST API - Positive & Negative Scenarios
  56. Урок 56. 00:04:16
    Integration test for delete employee REST API
  57. Урок 57. 00:06:58
    Integration testing EmployeeRepository using MySQL database
  58. Урок 58. 00:07:23
    What problem does Testcontainers solve
  59. Урок 59. 00:04:55
    Testcontainers overview
  60. Урок 60. 00:04:35
    Adding Testcontainers
  61. Урок 61. 00:17:43
    Integration Testing EmployeeController using Testcontainers
  62. Урок 62. 00:05:37
    Using @DynamicPropertySource
  63. Урок 63. 00:06:40
    Singleton containers pattern
  64. Урок 64. 00:04:45
    Integration Testing EmployeeRepository using Testcontainers
  65. Урок 65. 00:53:50
    Solution for All the Assignments in One Video
  66. Урок 66. 00:04:02
    Spring WebFlux Overview
  67. Урок 67. 00:02:26
    Spring Boot WebFlux Application Architecture
  68. Урок 68. 00:06:04
    Deploy MongoDB in Docker Container
  69. Урок 69. 00:06:38
    Create and Set up Spring Boot Project in IntelliJ IDE
  70. Урок 70. 00:04:48
    Create Employee Entity
  71. Урок 71. 00:05:14
    Create EmployeeRepository and Understanding Internals
  72. Урок 72. 00:04:04
    Create EmployeeDto and EmployeeMapper
  73. Урок 73. 00:13:55
    Build Reactive Add Employee REST API
  74. Урок 74. 00:06:35
    Build Reactive Get Employee REST API
  75. Урок 75. 00:05:52
    Build Reactive Get All Employees REST API
  76. Урок 76. 00:09:30
    Build Reactive Update Employee REST API
  77. Урок 77. 00:05:57
    Build Reactive Delete Employee REST API
  78. Урок 78. 00:06:04
    Overview of Testing CRUD Reactive REST APIs using WebFlux
  79. Урок 79. 00:13:50
    Unit Test Add Employee REST API
  80. Урок 80. 00:07:29
    Unit Test Get Employee REST API
  81. Урок 81. 00:08:29
    Unit Test Get All Employees REST API
  82. Урок 82. 00:08:29
    Unit Test Update Employee REST API
  83. Урок 83. 00:05:34
    Unit Test Delete Employee REST API
  84. Урок 84. 00:11:05
    Integration Test for Add Employee REST API
  85. Урок 85. 00:06:49
    Integration Test for Get Employee REST API
  86. Урок 86. 00:06:14
    Integration Test for Get All Employees REST API
  87. Урок 87. 00:04:03
    Refactor Code
  88. Урок 88. 00:07:30
    Integration Test for Update Employee REST API
  89. Урок 89. 00:03:43
    Integration Test for Delete Employee REST API