Fixed NullPointerException errors (old - before review branch merge). It was because reviews.sav and recipe.sav was Null, and Recipe and Review gateways had not handled this case yet.
Fixed NullPointerException error (new - after review branch merge). These were because with the updated RecipeInteractor, an instance of it now required a presenter. Instead, used static method. Also, when the static method loadReviewDatabase was called from the class, it did not have an instantiated reviewDatabaseReadWriter. By instantiating it, the method then worked.
Create reviews with ReviewDatabaseReadWriter instead of ReviewInteractor (to avoid passing in ReviewPresenter)
Cleaned up test code: moved all code for creating recipes and users to the setup method.
All SearchInteractor tests pass now