Introduction to Mocking in iOS Using Swift

Поделиться
HTML-код
  • Опубликовано: 7 ноя 2024

Комментарии • 19

  • @hotskyakash
    @hotskyakash 2 года назад

    Excellent tutorial Azam 👌👏

  • @pavanm2024
    @pavanm2024 2 года назад

    Good video. How we can implement this at the project level for eg do we have to create different HTTPClient and HTTPClientProtocol for the different features or do we have any generic way to avoid code redundancy. Any guidance or suggestion will be appreciated.

  • @suneethchakravarthy2669
    @suneethchakravarthy2669 4 года назад

    Good stuff. helped me to understand mocking. thank you.

  • @thompson_ian
    @thompson_ian 4 года назад

    I’ve really Ben loving your SwiftUI videos; they’ve been a huge help. I’m working on learning firestore forme Firebase recently. Would it be possible for you to make a tutorial on how I can paginate data in a list using Firestore and SwiftUI? I really appreciate your tutorials

  • @ramba109
    @ramba109 3 года назад

    I had the same problem and I got it work by adding dependancies into test target (build phases -> link binary with library).

  • @problem.solver
    @problem.solver 4 года назад

    Do you have a full agile course?

  • @cristianpena1964
    @cristianpena1964 4 года назад +1

    How does the HTTPClientFactory see the MockedHTTPClient since it's in another target?

    • @codekids99
      @codekids99 3 года назад

      did you solve this ?

    • @fakhryfauzan8677
      @fakhryfauzan8677 3 года назад

      help, i got this error too

    • @arjunaacharya6697
      @arjunaacharya6697 2 года назад

      Have a static property httpClientProtcolType T.Type where T:HTTPClientProtocol in HTTPClientFactory. Set this is to HTTPClient by default. In UT set this to MockedHTTPClient ?