summaryrefslogtreecommitdiffstats
path: root/mobile/android/fenix/app/src/test/java/org/mozilla/fenix/components/menu/MenuAccessPointTest.kt
diff options
context:
space:
mode:
Diffstat (limited to 'mobile/android/fenix/app/src/test/java/org/mozilla/fenix/components/menu/MenuAccessPointTest.kt')
-rw-r--r--mobile/android/fenix/app/src/test/java/org/mozilla/fenix/components/menu/MenuAccessPointTest.kt22
1 files changed, 22 insertions, 0 deletions
diff --git a/mobile/android/fenix/app/src/test/java/org/mozilla/fenix/components/menu/MenuAccessPointTest.kt b/mobile/android/fenix/app/src/test/java/org/mozilla/fenix/components/menu/MenuAccessPointTest.kt
new file mode 100644
index 0000000000..616e25e160
--- /dev/null
+++ b/mobile/android/fenix/app/src/test/java/org/mozilla/fenix/components/menu/MenuAccessPointTest.kt
@@ -0,0 +1,22 @@
+/* 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.components.menu
+
+import org.junit.Assert.assertEquals
+import org.junit.Test
+import org.mozilla.fenix.components.accounts.FenixFxAEntryPoint
+
+class MenuAccessPointTest {
+
+ @Test
+ fun `WHEN menu access points are converted to Fenix FxA entry points THEN return the correct entry points`() {
+ assertEquals(
+ FenixFxAEntryPoint.BrowserToolbar,
+ MenuAccessPoint.Browser.toFenixFxAEntryPoint(),
+ )
+ assertEquals(FenixFxAEntryPoint.Unknown, MenuAccessPoint.External.toFenixFxAEntryPoint())
+ assertEquals(FenixFxAEntryPoint.HomeMenu, MenuAccessPoint.Home.toFenixFxAEntryPoint())
+ }
+}