Home
last modified time | relevance | path

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

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsProvider2Test.java7157 assertBooleanUriParameter("foo:bar", "bool", true, true); in testReadBooleanQueryParameter()
7158 assertBooleanUriParameter("foo:bar", "bool", false, false); in testReadBooleanQueryParameter()
7159 assertBooleanUriParameter("foo:bar?bool=0", "bool", true, false); in testReadBooleanQueryParameter()
7160 assertBooleanUriParameter("foo:bar?bool=1", "bool", false, true); in testReadBooleanQueryParameter()
7161 assertBooleanUriParameter("foo:bar?bool=false", "bool", true, false); in testReadBooleanQueryParameter()
7162 assertBooleanUriParameter("foo:bar?bool=true", "bool", false, true); in testReadBooleanQueryParameter()
7163 assertBooleanUriParameter("foo:bar?bool=FaLsE", "bool", true, false); in testReadBooleanQueryParameter()
7164 assertBooleanUriParameter("foo:bar?bool=false&some=some", "bool", true, false); in testReadBooleanQueryParameter()
7165 assertBooleanUriParameter("foo:bar?bool=1&some=some", "bool", false, true); in testReadBooleanQueryParameter()
7166 assertBooleanUriParameter("foo:bar?some=bool", "bool", true, true); in testReadBooleanQueryParameter()
[all …]