diff options
Diffstat (limited to 'libs')
| -rw-r--r-- | libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/common/WindowSessionSupplierTest.kt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/common/WindowSessionSupplierTest.kt b/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/common/WindowSessionSupplierTest.kt index 33e8d78d6a15..7b7d96c4294c 100644 --- a/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/common/WindowSessionSupplierTest.kt +++ b/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/common/WindowSessionSupplierTest.kt @@ -19,6 +19,7 @@ package com.android.wm.shell.common import android.testing.AndroidTestingRunner import android.view.IWindowSession import androidx.test.filters.SmallTest +import com.android.wm.shell.ShellTestCase import org.junit.Test import org.junit.runner.RunWith @@ -30,10 +31,10 @@ import org.junit.runner.RunWith */ @RunWith(AndroidTestingRunner::class) @SmallTest -class WindowSessionSupplierTest { +class WindowSessionSupplierTest : ShellTestCase() { @Test - fun `InputChannelSupplier supplies an InputChannel`() { + fun `WindowSessionSupplierTest supplies an IWindowSession`() { val supplier = WindowSessionSupplier() SuppliersUtilsTest.assertSupplierProvidesValue(supplier) { it is IWindowSession |