Searched refs:checkTokensRegular (Results 1 – 1 of 1) sorted by relevance
/packages/providers/TvProvider/tests/src/com/android/providers/tv/util/ |
D | SqliteTokenFinderTest.java | 51 private void checkTokensRegular(String sql, @Nullable String tokens) { in checkTokensRegular() method in SqliteTokenFinderTest 74 checkTokensRegular(" select \t\r\n a\n\n ", "select a"); in testWhitespaces() 75 checkTokensRegular("a b", "a b"); in testWhitespaces() 79 checkTokensRegular("--\n", null); in testComment() 80 checkTokensRegular("a--\n", "a"); in testComment() 81 checkTokensRegular("a--abcdef\n", "a"); in testComment() 82 checkTokensRegular("a--abcdef\nx", "a x"); in testComment() 83 checkTokensRegular("a--\nx", "a x"); in testComment() 84 checkTokensRegular("a--abcdef", "a"); in testComment() 85 checkTokensRegular("a--abcdef\ndef--", "a def"); in testComment() [all …]
|