Successfully connected WelcomeView and WelcomeViewModel to the back-end logic; all use case tests passed and manually verified by running Main.main
Implemented SwaptoWelcome use case so that when the SignupView and LoginView is implemented the controller can be connected to the cancel buttons and the view can be swapped back to WelcomeView
Wrote tests for the SwaptoWelcome use case, specifically SwaptoWelcomePresenter. Other components do not need tests since they only have an execute method that calls the following class, in order to follow the Clean Architecture
WelcomeView
andWelcomeViewModel
to the back-end logic; all use case tests passed and manually verified by runningMain.main
SignupView
andLoginView
is implemented the controller can be connected to the cancel buttons and the view can be swapped back toWelcomeView
SwaptoWelcomePresenter
. Other components do not need tests since they only have anexecute
method that calls the following class, in order to follow the Clean Architecture