Skip to content

Commit

Permalink
test(new reviewer): sw600dp layout is initialized
Browse files Browse the repository at this point in the history
  • Loading branch information
BrayanDSO committed Feb 8, 2025
1 parent ff72da2 commit 711b5bd
Showing 1 changed file with 34 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/*
* Copyright (c) 2025 Brayan Oliveira <brayandso.dev@gmail.com>
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation; either version 3 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.ichi2.anki.ui.windows.reviewer

import androidx.test.core.app.ActivityScenario
import androidx.test.ext.junit.runners.AndroidJUnit4
import com.ichi2.anki.RobolectricTest
import com.ichi2.anki.previewer.CardViewerActivity
import org.junit.Test
import org.junit.runner.RunWith
import org.robolectric.annotation.Config

@RunWith(AndroidJUnit4::class)
class ReviewerTabletBigScreenTest : RobolectricTest() {
@Test
@Config(qualifiers = "w1000dp-h1000dp-480dpi")
fun `sw600dp layout is initialized`() {
val intent = ReviewerFragment.getIntent(targetContext)
ActivityScenario.launch<CardViewerActivity>(intent)
}
}

0 comments on commit 711b5bd

Please sign in to comment.