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