File tree 1 file changed +3
-3
lines changed
ktor-http/common/test/io/ktor/tests/http
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import kotlin.test.*
10
10
class MimesTest {
11
11
12
12
@Test
13
- fun `test mime with multiple extensions` () {
13
+ fun testMimeWithMultipleExtensions () {
14
14
val textPlain = " text/plain" .toContentType()
15
15
val textMime = " text" to textPlain
16
16
val txtMime = " txt" to textPlain
@@ -19,14 +19,14 @@ class MimesTest {
19
19
}
20
20
21
21
@Test
22
- fun `test mime with single extension` () {
22
+ fun testMimeWithSingleExtension () {
23
23
val acad = " application/acad" .toContentType()
24
24
val dwgMime = " dwg" to acad
25
25
assertTrue(mimes.contains(dwgMime))
26
26
}
27
27
28
28
@Test
29
- fun `test mimes size matches preallocated list size` () {
29
+ fun testMimesSizeMatchesPreallocatedListSize () {
30
30
assertEquals(INITIAL_MIMES_LIST_SIZE , mimes.size)
31
31
}
32
32
}
You can’t perform that action at this time.
0 commit comments