/* 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.home.sessioncontrol.viewholders import android.view.LayoutInflater import android.view.View import io.mockk.mockk import kotlinx.android.synthetic.main.component_top_sites.view.* import mozilla.components.feature.top.sites.TopSite import mozilla.components.support.test.robolectric.testContext import org.junit.Assert.assertEquals import org.junit.Before import org.junit.Test import org.junit.runner.RunWith import org.mozilla.fenix.helpers.FenixRobolectricTestRunner import org.mozilla.fenix.home.sessioncontrol.TopSiteInteractor @RunWith(FenixRobolectricTestRunner::class) class TopSiteViewHolderTest { private lateinit var view: View private lateinit var interactor: TopSiteInteractor @Before fun setup() { view = LayoutInflater.from(testContext) .inflate(TopSiteViewHolder.LAYOUT_ID, null) interactor = mockk() } @Test fun `binds list of top sites`() { TopSiteViewHolder(view, interactor).bind(listOf( object : TopSite { override val id = 1L override val isDefault = true override val title = "Pocket" override val url = "https://getpocket.com" } )) assertEquals(1, view.top_sites_list.adapter!!.itemCount) } }