Improving your test coverage with parameterized testing in Swift

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

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

  • @ReshmaRaghu-y6t
    @ReshmaRaghu-y6t 25 дней назад +1

    What about the setupWithError and tearDownWithError that we were using in XCTests?

    • @DonnyWalsdev
      @DonnyWalsdev  22 дня назад

      We don't have equivalents for that, I think you'd have to call your own setup and teardowns from within a throwing test for example if you require that kind of behavior

  • @ReshmaRaghu-y6t
    @ReshmaRaghu-y6t 25 дней назад

    What