For #24836 - Remove GleanMetricsServiceTest

This commit is contained in:
Alexandru2909 2022-04-18 17:44:55 +03:00 committed by mergify[bot]
parent 6a7f335107
commit c475369d21
1 changed files with 0 additions and 29 deletions

View File

@ -1,29 +0,0 @@
/* 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.metrics
import mozilla.components.service.glean.testing.GleanTestRule
import mozilla.components.support.test.robolectric.testContext
import org.junit.Assert.assertFalse
import org.junit.Assert.assertTrue
import org.junit.Before
import org.junit.Rule
import org.junit.Test
import org.junit.runner.RunWith
import org.mozilla.fenix.helpers.FenixRobolectricTestRunner
@RunWith(FenixRobolectricTestRunner::class)
class GleanMetricsServiceTest {
@get:Rule
val gleanRule = GleanTestRule(testContext)
private lateinit var gleanService: GleanMetricsService
@Before
fun setup() {
gleanService = GleanMetricsService(testContext)
}
}