blob: a3ac5153a03d58aa6904206e07be757f5080f9f3 [file] [log] [blame]
Andrew Scull507d11c2017-05-03 17:19:01 +01001package com.android.server.locksettings;
Rubin Xu7b7424b2017-03-31 18:03:20 +01002
Pavel Grafov57f1b662019-03-27 14:55:38 +00003import android.platform.test.annotations.Presubmit;
4
5import androidx.test.filters.SmallTest;
Kenny Rootd01bb412019-11-22 09:34:03 -08006import androidx.test.runner.AndroidJUnit4;
7
8import org.junit.Before;
9import org.junit.runner.RunWith;
Pavel Grafov57f1b662019-03-27 14:55:38 +000010
11@SmallTest
12@Presubmit
Kenny Rootd01bb412019-11-22 09:34:03 -080013@RunWith(AndroidJUnit4.class)
Rubin Xu7b7424b2017-03-31 18:03:20 +010014public class WeaverBasedSyntheticPasswordTests extends SyntheticPasswordTests {
15
Kenny Rootd01bb412019-11-22 09:34:03 -080016 @Before
17 public void enableWeaver() throws Exception {
Rubin Xu7b7424b2017-03-31 18:03:20 +010018 mSpManager.enableWeaver();
19 }
Rubin Xu7b7424b2017-03-31 18:03:20 +010020}