Qual è il miglior framework di test delle unità Swift?

Consiglio la combinazione Quick / Nimble. Al momento di scrivere questa risposta, Quick ha 5.796 stelle su Github e dicono che più di mille applicazioni lo stanno usando, quindi non si può sbagliare usandoli.

Quick è un framework di sviluppo behavior-driven per Swift e Objective-C, ispirato a RSpec, Specta e Ginkgo. Nimble è un framework matcher, compagno di Quick, usato per esprimere i vostri test usando un DSL molto vicino all'inglese fluente. It supports a lot of built-in matcher functions, asynchronous expectations, and the possibility of writing your own matchers.

Here you have an example of test code (taken directly from their wiki):

  1. // Swift 
  2.  
  3. import Quick 
  4. import Nimble 
  5.  
  6. class TableOfContentsSpec: QuickSpec { 
  7. override func spec() { 
  8. describe("the 'Documentation' directory") { 
  9. it("has everything you need to get started") { 
  10. let sections = Directory("Documentation").sections 
  11. expect(sections).to(contain("Organized Tests with Quick Examples and Example Groups")) 
  12. expect(sections).to(contain("Installing Quick")) 
  13.  
  14. context("if it doesn't have what you're looking for") { 
  15. it("needs to be updated") { 
  16. let you = You(awesome: true) 
  17. expect{you.submittedAnIssue}.toEventually(beTruthy()) 
  18. }