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: 8 months ago
JSON representation

Bank app which demonstrates BrightFutures and how to test UITableViewControllers

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.