You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iceraven-browser/app/src/test/java/org/mozilla/fenix/settings/creditcards/DefaultCreditCardsManagemen...

47 lines
1.4 KiB
Kotlin

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package org.mozilla.fenix.settings.creditcards
import androidx.navigation.NavController
import io.mockk.mockk
import io.mockk.spyk
import io.mockk.verify
import org.junit.Before
import org.junit.Rule
import org.junit.Test
import org.mozilla.fenix.settings.creditcards.controller.DefaultCreditCardsManagementController
import org.mozilla.fenix.helpers.DisableNavGraphProviderAssertionRule
class DefaultCreditCardsManagementControllerTest {
private val navController: NavController = mockk(relaxed = true)
private lateinit var controller: DefaultCreditCardsManagementController
@get:Rule
val disableNavGraphProviderAssertionRule = DisableNavGraphProviderAssertionRule()
@Before
fun setup() {
controller = spyk(
DefaultCreditCardsManagementController(
navController = navController
)
)
}
@Test
fun handleCreditCardClicked() {
controller.handleCreditCardClicked()
verify {
navController.navigate(
CreditCardsManagementFragmentDirections
.actionCreditCardsManagementFragmentToCreditCardEditorFragment()
)
}
}
}