``` @Test fun `on do transfer and successfully...
# multiplatform
s
Copy code
@Test
    fun `on do transfer and successfully completed should hide animated loading directly and navigate to the transfers confirmation in the bank transfers process`() {
        
            presenter.doTransfer()

            val successCaptor = slot<() -> Unit>()
            coVerify{   doTransferUseCase.execute(capture(successCaptor)) }
            successCaptor.captured()

            verify { view.hideAnimatedLoadingDirectly() }


    }