Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Unit Testing Swift Mobile App, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:01:50
    Introduction 1
  2. Урок 2. 00:06:56
    Introduction 2
  3. Урок 3. 00:03:30
    Testing Pyramid
  4. Урок 4. 00:03:47
    The F.I.R.S.T Principle
  5. Урок 5. 00:02:37
    Test-Driven Development Lifecycle
  6. Урок 6. 00:03:23
    Enable Unit Tests in Xcode Project
  7. Урок 7. 00:07:09
    The Default Unit Test Case Class Explained
  8. Урок 8. 00:02:26
    The addTeardownBlock()
  9. Урок 9. 00:03:44
    Creating a New Test Case Class
  10. Урок 10. 00:04:08
    Ways to Run Unit Test in Xcode
  11. Урок 11. 00:01:57
    The Default Order of Unit Tests
  12. Урок 12. 00:03:09
    Unit Test Naming Requirements
  13. Урок 13. 00:04:38
    Ways to Disable or Skip Unit Test
  14. Урок 14. 00:03:52
    Viewing Test Results
  15. Урок 15. 00:05:55
    Code Coverage
  16. Урок 16. 00:01:21
    100% Code Coverage
  17. Урок 17. 00:02:10
    Test Method Code Structure. Arrange, Act, Assert.
  18. Урок 18. 00:07:33
    Assertions
  19. Урок 19. 00:04:30
    Enabling the Failure Debugger Breakpoint
  20. Урок 20. 00:03:58
    Parallel Distributed Testing on Multiple Simulator Clones
  21. Урок 21. 00:01:57
    Introduction
  22. Урок 22. 00:11:24
    Test That User First Name is Valid
  23. Урок 23. 00:05:34
    Test for a very short First Name
  24. Урок 24. 00:05:07
    Test for a very long First Name
  25. Урок 25. 00:04:00
    Challenge: Apply TDD to Implement Validation of Last Name and Email Address
  26. Урок 26. 00:03:38
    Test if user passwords match
  27. Урок 27. 00:02:56
    Test if user passwords do not match
  28. Урок 28. 00:01:48
    Introduction
  29. Урок 29. 00:02:49
    Dependency Injection
  30. Урок 30. 00:03:42
    Use of Protocols
  31. Урок 31. 00:03:51
    Test Toubles - Fake, Mock, Stub, Dummy
  32. Урок 32. 00:03:07
    Introduction
  33. Урок 33. 00:01:14
    Create Initial SignupWebServiceTests Unit Test class
  34. Урок 34. 00:02:41
    Create Initial SignupWebService Class
  35. Урок 35. 00:04:14
    Implementing SignupFormRequestModel
  36. Урок 36. 00:01:36
    Adding CompletionHandler to Signup Method Signature
  37. Урок 37. 00:01:24
    Implementing the Initial SignupResponseModel
  38. Урок 38. 00:01:04
    Implementing the Initial SignupErrors Enum
  39. Урок 39. 00:04:07
    Organize Project Folders
  40. Урок 40. 00:02:20
    Assert that the Response Status is Equal to "ok"
  41. Урок 41. 00:02:36
    Adding an Expectation and an Asynchronous Wait Method
  42. Урок 42. 00:01:52
    Inject URL String
  43. Урок 43. 00:01:42
    Prepare URL
  44. Урок 44. 00:02:52
    Prepare URL Request Object
  45. Урок 45. 00:02:15
    Create DataTask
  46. Урок 46. 00:01:01
    Inject URLSession
  47. Урок 47. 00:02:04
    Return Response Model
  48. Урок 48. 00:04:34
    Trying how it works with Real HTTP Request
  49. Урок 49. 00:04:21
    Mock URLProtocol
  50. Урок 50. 00:04:40
    Make URLSession use MockURLProtocol
  51. Урок 51. 00:07:26
    Handle Unknown JSON Response Model
  52. Урок 52. 00:05:43
    When Empty URL Provided Return a Specific Error Message
  53. Урок 53. 00:02:54
    Refactor SignupErrors Enum
  54. Урок 54. 00:13:22
    Test URL Request Failure
  55. Урок 55. 00:02:00
    Check Code Coverage
  56. Урок 56. 00:06:11
    Introduction
  57. Урок 57. 00:01:49
    Create Presenter Unit Test Class and Test Method
  58. Урок 58. 00:02:48
    Create Signup Form Model Struct
  59. Урок 59. 00:02:17
    Create SignupPresenter class and the processUserSignup() method
  60. Урок 60. 00:03:08
    Create Initial MockSignupModelValidator class
  61. Урок 61. 00:04:46
    Create Validator Protocol
  62. Урок 62. 00:07:00
    Inject Validator Mock and validate each property
  63. Урок 63. 00:03:17
    Refactor
  64. Урок 64. 00:03:04
    Unit Test to verify the signup() was called
  65. Урок 65. 00:02:40
    Create SignupWebService Mock Class
  66. Урок 66. 00:03:00
    Signup Web Service Protocol
  67. Урок 67. 00:05:12
    Inject Signup Web Service Mock in to Presenter
  68. Урок 68. 00:01:19
    Unit Test to assert that Presenter calls a method on View Delagate
  69. Урок 69. 00:07:00
    Create View Delegate Protocol and MockSignupViewDelegate
  70. Урок 70. 00:05:10
    Inject View Delegate into Presenter
  71. Урок 71. 00:00:55
    Counting number of times a method was called
  72. Урок 72. 00:01:26
    Verify that successfulSignup() called one time only
  73. Урок 73. 00:00:56
    Refactor
  74. Урок 74. 00:02:14
    Coding Challenge
  75. Урок 75. 00:03:43
    Assert that Presenter calls a Error Handler on View Delagate
  76. Урок 76. 00:01:51
    Review Code Coverage of Presenter Class
  77. Урок 77. 00:03:35
    Introduction
  78. Урок 78. 00:05:29
    Create a New Test Class and a Test Method
  79. Урок 79. 00:05:25
    Test UITextFields are initially empty
  80. Урок 80. 00:06:39
    Test UITextField has a referencing outlet
  81. Урок 81. 00:09:16
    Test UIButton has @IBAction assigned to it
  82. Урок 82. 00:03:48
    Test UIButton Action invokes code in Presenter
  83. Урок 83. 00:05:12
    Create MockSignupPresenter class
  84. Урок 84. 00:08:20
    Inject MockSignupPresenter into View Controller
  85. Урок 85. 00:01:30
    Introduction
  86. Урок 86. 00:02:41
    Refactor Massive View Controllers
  87. Урок 87. 00:05:46
    Use Protocols and Dependency Injection
  88. Урок 88. 00:03:28
    Adding code to existing methods
  89. Урок 89. 00:02:35
    Break large functions into smaller ones
  90. Урок 90. 00:04:50
    Wrapping existing classes. Decorator pattern.
  91. Урок 91. 00:03:46
    Loading UIViewController that uses a Storyboard
  92. Урок 92. 00:02:37
    Loading UIViewController that uses XIB
  93. Урок 93. 00:03:13
    UIViewController that creates Views programmatically
  94. Урок 94. 00:06:56
    XCTAssertThrowsError example
  95. Урок 95. 00:02:34
    XCTAssertNoThrow example
  96. Урок 96. 00:04:01
    An example of Do Try and Catch instead of XCTAssertThrowsError
  97. Урок 97. 00:01:47
    An example of Do Try and Catch instead of XCTAssertNoThrow
  98. Урок 98. 00:06:42
    Overview of UITextField Attributes: Content Type, Keyboard Type, Placeholer...
  99. Урок 99. 00:05:06
    Test that UITextField has the Email Address UITextContentType set
  100. Урок 100. 00:02:55
    Test that UITextField has Email Address keyboard type set
  101. Урок 101. 00:02:37
    Test that Password UITextField is a Secure Text Entry
  102. Урок 102. 00:02:21
    Project overview
  103. Урок 103. 00:07:32
    Push UIViewController into UINavigationController. Wait for expectations.
  104. Урок 104. 00:03:18
    Test Push Navigation. Alternative way.
  105. Урок 105. 00:05:44
    Test Push Navigation with Spy class
  106. Урок 106. 00:05:49
    Introduction
  107. Урок 107. 00:06:10
    Accessing UI Elements
  108. Урок 108. 00:02:03
    Add UI Tests target to a project
  109. Урок 109. 00:02:22
    Create a new UI Test case class
  110. Урок 110. 00:02:46
    Recording UI Tests. An introduction
  111. Урок 111. 00:04:45
    Recording UI Tests. Test if UITextFields are enabled
  112. Урок 112. 00:02:42
    Testing with UITextField placeholders
  113. Урок 113. 00:05:10
    Test Assertions to check if UITextFields are enabled
  114. Урок 114. 00:04:04
    Adding accessibility identifiers to UITextFields
  115. Урок 115. 00:02:27
    Finding UI elements
  116. Урок 116. 00:04:58
    A Test method to assert that an error alert is presented
  117. Урок 117. 00:06:02
    Making UIViewController display UIAlertController
  118. Урок 118. 00:02:43
    Refactor
  119. Урок 119. 00:05:30
    Test for Success Alert Dialog
  120. Урок 120. 00:07:03
    Wait for View Controller to appear
  121. Урок 121. 00:03:06
    XCUIElement Actions and Gestures
  122. Урок 122. 00:01:35
    Introduction
  123. Урок 123. 00:02:43
    Generating and Previewing Screenshots
  124. Урок 124. 00:01:37
    Enabling and Disabling Automatic Screenshots
  125. Урок 125. 00:04:08
    Taking Screenshot of Specific UI Element
  126. Урок 126. 00:02:48
    Take a Screenshot of Current Device Screen
  127. Урок 127. 00:04:56
    Introduction
  128. Урок 128. 00:04:00
    Passing and Reading Launch Arguments
  129. Урок 129. 00:04:30
    Passing and Reading Launch Environment Values
  130. Урок 130. 00:02:38
    Introduction
  131. Урок 131. 00:03:23
    Creating a new Test plan
  132. Урок 132. 00:04:22
    Creating new test plan configuration
  133. Урок 133. 00:04:19
    A separate Test Plan for UI Tests, Unit Tests and All Tests
  134. Урок 134. 00:07:23
    Localization screenshots demo