Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.