Home
last modified time | relevance | path

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

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DWap230WspContentTypeTest.java265 String testType = "application/wibble"; in testConstrainedMediaExtensionMedia() local
267 out.write(testType.getBytes("US-ASCII")); in testConstrainedMediaExtensionMedia()
273 assertEquals(testType, mimeType); in testConstrainedMediaExtensionMedia()
280 String testType = "12345678901234567890123456789"; in testGeneralFormShortLengthExtensionMedia() local
282 out.write(testType.length() + 1); in testGeneralFormShortLengthExtensionMedia()
283 out.write(testType.getBytes("US-ASCII")); in testGeneralFormShortLengthExtensionMedia()
290 assertEquals(testType, mimeType); in testGeneralFormShortLengthExtensionMedia()
445 String testType = "application/wibble"; in testGeneralFormLengthQuoteExtensionMedia() local
449 out.write(testType.length() + 1); // Length as UINTVAR in testGeneralFormLengthQuoteExtensionMedia()
451 out.write(testType.getBytes("US-ASCII")); in testGeneralFormLengthQuoteExtensionMedia()
[all …]
/frameworks/base/tests/CoreTests/android/core/
DTestWebData.java113 testType = type; in TestWebData()
127 public String testType; field in TestWebData
DTestWebServer.java824 psPrint(ps, "Content-type: " + TestWebData.testParams[testNum].testType); in printHeaders()