Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/possen/bank
Bank app which demonstrates BrightFutures and how to test UITableViewControllers
https://github.com/possen/bank
brightfutures ios swift swift-package-manager tableview unit-testing
Last synced: 18 days ago
JSON representation
Bank app which demonstrates BrightFutures and how to test UITableViewControllers
- Host: GitHub
- URL: https://github.com/possen/bank
- Owner: possen
- Created: 2017-06-02T00:12:49.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-05T23:31:10.000Z (over 7 years ago)
- Last Synced: 2024-11-10T00:30:16.109Z (2 months ago)
- Topics: brightfutures, ios, swift, swift-package-manager, tableview, unit-testing
- Language: Swift
- Size: 80.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Bank
Project demonstrates various approaches with dealing with async data by using Bright Futures. This includes testing the asynchonous loading of table view under a unit test.
- BrightFutures handles the asynchronous chaining of the requests and does the parsing off the main thread, thus avoiding heavily nested handlers.
- The ViewControllerTests shows the view controller and how to do some testing of a view controller.
- TableViewAdaptor now handles a table where the number of sections changes after receiving data.