1. Урок 1. 00:02:41
    What is Automated Testing
  2. Урок 2. 00:02:39
    Benefits of Automated Testing
  3. Урок 3. 00:04:01
    Types of Tests
  4. Урок 4. 00:02:56
    Test Pyramid
  5. Урок 5. 00:02:54
    The Tooling
  6. Урок 6. 00:00:16
    Source Code
  7. Урок 7. 00:10:28
    Writing Your First Unit Test
  8. Урок 8. 00:05:23
    Testing All the Execution Tests
  9. Урок 9. 00:02:15
    Refactoring with Confidence
  10. Урок 10. 00:04:00
    Using NUnit in Visual Studio
  11. Урок 11. 00:03:20
    What is Test-Driven Development
  12. Урок 12. 00:01:48
    Course Structure
  13. Урок 13. 00:00:42
    Summary
  14. Урок 14. 00:00:48
    Introduction
  15. Урок 15. 00:02:04
    Characteristics of Good Unit Tests
  16. Урок 16. 00:03:02
    What to Test and What Not to Test
  17. Урок 17. 00:02:37
    Naming and Organizing Tests
  18. Урок 18. 00:01:53
    Introducing Rider
  19. Урок 19. 00:03:53
    Writing a Simple Unit Test
  20. Урок 20. 00:04:44
    Black-box Testing
  21. Урок 21. 00:03:37
    Set Up and Tear Down
  22. Урок 22. 00:03:26
    Parameterized Tests
  23. Урок 23. 00:01:34
    Ignoring Tests
  24. Урок 24. 00:06:12
    Writing Trustworthy Tests
  25. Урок 25. 00:03:52
    Developers Who Don't Write Tests
  26. Урок 26. 00:01:34
    Summary
  27. Урок 27. 00:00:33
    Introduction
  28. Урок 28. 00:05:51
    Testing Strings
  29. Урок 29. 00:06:12
    Testing Arrays and Collections
  30. Урок 30. 00:04:03
    Testing the Return Type of Methods
  31. Урок 31. 00:04:43
    Testing Void Methods
  32. Урок 32. 00:04:11
    Testing Methods that Throw Exceptions
  33. Урок 33. 00:04:35
    Testing Methods that Raise an Event
  34. Урок 34. 00:09:51
    Testing Private Methods
  35. Урок 35. 00:02:31
    Code Coverage
  36. Урок 36. 00:02:33
    Testing in the Real-world
  37. Урок 37. 00:00:47
    Summary
  38. Урок 38. 00:01:20
    19- Exercise- FizzBuzz
  39. Урок 39. 00:06:20
    20- Solution- FizzBuzz
  40. Урок 40. 00:00:55
    Exercise- DemeritPointsCalculator
  41. Урок 41. 00:09:45
    Solution- DemeritPointsCalculator
  42. Урок 42. 00:00:50
    Exercise- Stack
  43. Урок 43. 00:14:56
    Solution- Stack
  44. Урок 44. 00:02:17
    Introduction
  45. Урок 45. 00:03:35
    Loosely-coupled and Testable Code
  46. Урок 46. 00:09:43
    Refactoring Towards a Loosely-coupled Design
  47. Урок 47. 00:05:10
    Dependency Injection via Method Parameters
  48. Урок 48. 00:02:42
    Dependency Injection via Properties
  49. Урок 49. 00:04:23
    Dependency Injection via Constructor
  50. Урок 50. 00:03:27
    Dependency Injection Frameworks
  51. Урок 51. 00:01:56
    Mocking Frameworks
  52. Урок 52. 00:06:48
    Creating Mock Objects Using Moq
  53. Урок 53. 00:01:55
    State-based vs. Interaction Testing
  54. Урок 54. 00:03:41
    Testing the Interaction Between Two Objects
  55. Урок 55. 00:03:11
    Fake as Little As Possible
  56. Урок 56. 00:04:55
    An Example of a Mock Abuse
  57. Урок 57. 00:02:02
    Who Should Write Tests
  58. Урок 58. 00:01:12
    Exercise- VideoService
  59. Урок 59. 00:05:48
    Refactoring
  60. Урок 60. 00:07:56
    Testing
  61. Урок 61. 00:01:27
    Exercise- InstallerHelper
  62. Урок 62. 00:04:48
    Refactoring InstallerHelper
  63. Урок 63. 00:08:06
    Testing InstallerHelper
  64. Урок 64. 00:02:38
    Exercise- EmployeeHelper
  65. Урок 65. 00:05:25
    Refactoring EmployeeController
  66. Урок 66. 00:04:01
    Testing EmployeeController
  67. Урок 67. 00:02:13
    Introduction
  68. Урок 68. 00:03:41
    Test Cases
  69. Урок 69. 00:07:45
    Extracting IBooking Repository
  70. Урок 70. 00:04:31
    Writing the First Test
  71. Урок 71. 00:07:51
    Refactoring
  72. Урок 72. 00:01:29
    Writing the Second Test
  73. Урок 73. 00:03:45
    Fixing a Bug
  74. Урок 74. 00:04:46
    Writing Additional Tests
  75. Урок 75. 00:02:08
    Introduction
  76. Урок 76. 00:09:33
    Refactoring For Testability
  77. Урок 77. 00:03:00
    Fixing a Design Issue
  78. Урок 78. 00:07:41
    Writing the First Interaction Test
  79. Урок 79. 00:05:43
    Keeping Tests Clean
  80. Урок 80. 00:05:39
    Testing a Method is Not Called
  81. Урок 81. 00:07:32
    Another Interaction Test
  82. Урок 82. 00:08:03
    Extracting Helper Methods
  83. Урок 83. 00:03:35
    Testing Exceptions