File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
lib/src/test/kotlin/at/bitfire/synctools/icalendar Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments