Skip to content

Commit aad629f

Browse files
committed
Don't use spaces in test names (requires Android 11)
1 parent 366f34e commit aad629f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/src/test/kotlin/at/bitfire/synctools/icalendar/ICalendarParserTest.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class ICalendarParserTest {
2121
val mockkRule = MockKRule(this)
2222

2323
@Test
24-
fun `parse() applies pre-processing`() {
24+
fun testParse_AppliesPreProcessing() {
2525
mockkObject(ICalPreprocessor)
2626

2727
val reader = StringReader(
@@ -42,7 +42,7 @@ class ICalendarParserTest {
4242
}
4343

4444
@Test
45-
fun `parse() suppresses invalid properties`() {
45+
fun testParse_SuppressesInvalidProperties() {
4646
val reader = StringReader(
4747
"BEGIN:VCALENDAR\r\n" +
4848
"BEGIN:VEVENT\r\n" +
@@ -54,7 +54,7 @@ class ICalendarParserTest {
5454
}
5555

5656
@Test(expected = InvalidRemoteResourceException::class)
57-
fun `parse() throws exception on invalid input`() {
57+
fun testParse_ThrowsExceptionOnInvalidInput() {
5858
val reader = StringReader("invalid")
5959
ICalendarParser().parse(reader)
6060
}

0 commit comments

Comments
 (0)