[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-6714":3},{"id":4,"name":5,"fullName":6,"owner":5,"repo":5,"description":7,"homepage":8,"htmlUrl":9,"language":10,"languages":9,"totalLinesOfCode":9,"stars":11,"forks":12,"watchers":13,"openIssues":14,"contributorsCount":15,"subscribersCount":15,"size":15,"stars1d":15,"stars7d":15,"stars30d":16,"stars90d":15,"forks30d":15,"starsTrendScore":15,"compositeScore":17,"rankGlobal":9,"rankLanguage":9,"license":18,"archived":19,"fork":19,"defaultBranch":20,"hasWiki":21,"hasPages":21,"topics":22,"createdAt":9,"pushedAt":9,"updatedAt":30,"readmeContent":31,"aiSummary":32,"trendingCount":15,"starSnapshotCount":15,"syncStatus":33,"lastSyncTime":34,"discoverSource":35},6714,"Quick","Quick\u002FQuick","The Swift (and Objective-C) testing framework.","http:\u002F\u002Fquick.github.io\u002FQuick\u002F",null,"Swift",9830,895,217,36,0,3,65.16,"Apache License 2.0",false,"main",true,[23,24,25,26,27,28,29],"bdd","carthage","cocoapods","ios","objective-c","swift","testing","2026-06-12 04:00:30","![](http:\u002F\u002Ff.cl.ly\u002Fitems\u002F0r1E192C1R0b2g2Q3h2w\u002FQuickLogo_Color.png)\n\n[![Build Status](https:\u002F\u002Fgithub.com\u002FQuick\u002FQuick\u002Factions\u002Fworkflows\u002Fci-xcode.yml\u002Fbadge.svg)](https:\u002F\u002Fgithub.com\u002FQuick\u002FQuick\u002Factions\u002Fworkflows\u002Fci-xcode.yml)\n[![CocoaPods](https:\u002F\u002Fimg.shields.io\u002Fcocoapods\u002Fv\u002FQuick.svg)](https:\u002F\u002Fcocoapods.org\u002Fpods\u002FQuick)\n[![Platforms](https:\u002F\u002Fimg.shields.io\u002Fcocoapods\u002Fp\u002FQuick.svg)](https:\u002F\u002Fcocoapods.org\u002Fpods\u002FQuick)\n\nQuick is a behavior-driven development framework for Swift and Objective-C.\nInspired by [RSpec](https:\u002F\u002Fgithub.com\u002Frspec\u002Frspec), [Specta](https:\u002F\u002Fgithub.com\u002Fspecta\u002Fspecta), and [Ginkgo](https:\u002F\u002Fgithub.com\u002Fonsi\u002Fginkgo).\n\n![](https:\u002F\u002Fraw.githubusercontent.com\u002FQuick\u002FAssets\u002Fmaster\u002FScreenshots\u002FQuickSpec%20screenshot.png)\n\n```swift\n\u002F\u002F Swift\n\nimport Quick\nimport Nimble\n\nclass TableOfContentsSpec: QuickSpec {\n  override class func spec() {\n    describe(\"the 'Documentation' directory\") {\n      it(\"has everything you need to get started\") {\n        let sections = Directory(\"Documentation\").sections\n        expect(sections).to(contain(\"Organized Tests with Quick Examples and Example Groups\"))\n        expect(sections).to(contain(\"Installing Quick\"))\n      }\n\n      context(\"if it doesn't have what you're looking for\") {\n        it(\"needs to be updated\") {\n          let you = You(awesome: true)\n          expect{you.submittedAnIssue}.toEventually(beTruthy())\n        }\n      }\n    }\n  }\n}\n```\n#### Nimble\nQuick comes together with [Nimble](https:\u002F\u002Fgithub.com\u002FQuick\u002FNimble) — a matcher framework for your tests. You can learn why `XCTAssert()` statements make your expectations unclear and how to fix that using Nimble assertions [here](.\u002FDocumentation\u002Fen-us\u002FNimbleAssertions.md).\n\n## Swift Version\n\nCertain versions of Quick and Nimble only support certain versions of Swift. Depending on which version of Swift your project uses, you should use specific versions of Quick and Nimble. Use the table below to determine which versions of Quick and Nimble are compatible with your project.\n\n|Swift version        |Quick version   |Nimble version |\n|:--------------------|:---------------|:--------------|\n|Swift 5.2            |v3.0.0 or later |v9.0.0 or later|\n|Swift 4.2 \u002F Swift 5  |v1.3.2 or later |v7.3.2 or later|\n|Swift 3 \u002F Swift 4    |v1.0.0 or later |v5.0.0 or later|\n|Swift 2.2 \u002F Swift 2.3|v0.9.3          |v4.1.0         |\n\n## Documentation\n\nAll documentation can be found in the [Documentation folder](.\u002FDocumentation), including [detailed installation instructions](.\u002FDocumentation\u002Fen-us\u002FInstallingQuick.md) for CocoaPods, Git submodules, Swift Package Manager, and more. For example, you can install Quick and [Nimble](https:\u002F\u002Fgithub.com\u002FQuick\u002FNimble) using CocoaPods by adding the following to your `Podfile`:\n\n```rb\n# Podfile\n\nuse_frameworks!\n\ntarget \"MyApp\" do\n  # Normal libraries\n\n  target 'MyApp_Tests' do\n    inherit! :search_paths\n\n    pod 'Quick'\n    pod 'Nimble'\n  end\nend\n```\n\nYou can also install Quick and Nimble using Swift Package Manager by adding the following to the dependencies section your `Package.swift`:\n\n```swift\ndependencies: [\n    .package(url: \"https:\u002F\u002Fgithub.com\u002FQuick\u002FQuick.git\", from: \"7.0.0\"),\n    .package(url: \"https:\u002F\u002Fgithub.com\u002FQuick\u002FNimble.git\", from: \"12.0.0\"),\n],\n```\n\n## Projects using Quick\n\nOver ten-thousand apps use either Quick and Nimble however, as they are not included in the app binary, neither appear in “Top Used Libraries” blog posts. Therefore, it would be greatly appreciated to remind contributors that their efforts are valued by compiling a list of organizations and projects that use them. \n\nDoes your organization or project use Quick and Nimble? If yes, [please add your project to the list](https:\u002F\u002Fgithub.com\u002FQuick\u002FQuick\u002Fwiki\u002FProjects-using-Quick).\n\n## Who uses Quick\n\nSimilar to projects using Quick, it would be nice to hear why people use Quick and Nimble. Are there features you love? Are there features that are just okay? Are there some features we have that no one uses?\n\nHave something positive to say about Quick (or Nimble)? If yes, [provide a testimonial here](https:\u002F\u002Fgithub.com\u002FQuick\u002FQuick\u002Fwiki\u002FWho-uses-Quick).\n\n## Privacy Statement\n\nQuick is a library that is only used for testing and should never be included in the binary submitted to App Store Connect.\nYour app will be rejected if you do include Quick in the submitted binary because Quick uses private APIs to better integrate with Xcode.\n\nDespite not being shipped to Apple, Quick does not and will never collect any kind of analytics or tracking.\n\n## License\n\nApache 2.0 license. See the [`LICENSE`](LICENSE) file for details.\n","Quick 是一个用于 Swift 和 Objective-C 的行为驱动开发测试框架。它提供了描述性测试用例的编写方式，支持 BDD（行为驱动开发）风格的测试代码，使开发者能够更直观地理解测试逻辑。与 Nimble 匹配器库结合使用时，可以创建出清晰且易于阅读的断言。Quick 适合 iOS 开发者在进行单元测试或集成测试时使用，尤其当项目需要高质量、可维护性强的测试代码时。通过 CocoaPods 或 Swift Package Manager 可以方便地将其集成到现有工程中。",2,"2026-06-11 03:08:29","top_language"]