Home | History | Annotate | Download | only in functional

Lines Matching refs:mime

35  * System tests for the handling of mime type in the media framework.
71 // AUDIO mime type resolution tests.
97 // Checks the activity resolver handling of mime types is case sensitive.
105 // resolving mime types. Trailing whitespaces seems to be non
114 // @return a ResolveInfo instance for the mime type or null if the type is
116 private ResolveInfo resolveMime(String mime) {
120 viewIntent.setDataAndType(uri, mime);
125 // Helper method to check the media playback activity handles the given mime type.
126 // @param mime type to test for
127 private void assertMediaPlaybackActivityHandles(String mime) throws Exception {
128 ResolveInfo ri = resolveMime(mime);
133 // Helper method to check that NO activity handles the given mime type.
134 // @param mime type to test for
135 private void assertNoActivityHandles(String mime) throws Exception {
136 assertNull(resolveMime(mime));