Home
last modified time | relevance | path

Searched refs:MATCHER_SPACE (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Launcher3/tests/src/com/android/launcher3/search/
DStringMatcherUtilityTest.java42 private static final StringMatcherSpace MATCHER_SPACE = StringMatcherSpace.getInstance(); field in StringMatcherUtilityTest
104 assertTrue(matches("white", "white cow", MATCHER_SPACE)); in testMatchesWithSpaceBreakOnly()
105 assertTrue(matches("white ", "white cow", MATCHER_SPACE)); in testMatchesWithSpaceBreakOnly()
106 assertTrue(matches("white c", "white cow", MATCHER_SPACE)); in testMatchesWithSpaceBreakOnly()
107 assertTrue(matches("cow", "white cow", MATCHER_SPACE)); in testMatchesWithSpaceBreakOnly()
108 assertTrue(matches("cow", "whitecow cow", MATCHER_SPACE)); in testMatchesWithSpaceBreakOnly()
110 assertFalse(matches("cow", "whiteCow", MATCHER_SPACE)); in testMatchesWithSpaceBreakOnly()
111 assertFalse(matches("cow", "whiteCOW", MATCHER_SPACE)); in testMatchesWithSpaceBreakOnly()
112 assertFalse(matches("cow", "whitecowCOW", MATCHER_SPACE)); in testMatchesWithSpaceBreakOnly()
113 assertFalse(matches("cow", "white2cow", MATCHER_SPACE)); in testMatchesWithSpaceBreakOnly()
[all …]