Merge "Migrate SearchFeatureProviderImpl to Kotlin" into main

This commit is contained in:
Chaohui Wang
2024-06-28 02:39:20 +00:00
committed by Android (Google) Code Review
4 changed files with 100 additions and 83 deletions

View File

@@ -124,8 +124,8 @@ public class SearchFeatureProviderImplTest {
}
@Test(expected = IllegalArgumentException.class)
public void verifyLaunchSearchResultPageCaller_nullCaller_shouldCrash() {
mProvider.verifyLaunchSearchResultPageCaller(mActivity, null /* caller */);
public void verifyLaunchSearchResultPageCaller_emptyCaller_shouldCrash() {
mProvider.verifyLaunchSearchResultPageCaller(mActivity, "");
}
@Test(expected = SecurityException.class)