From 7655f0660886e90ce79fc12d1c2ab53586c4a389 Mon Sep 17 00:00:00 2001 From: Marco Gomiero Date: Tue, 1 Aug 2023 22:52:52 +0200 Subject: [PATCH] Log test --- .../com/prof18/feedflow/domain/DateFormatterTest.kt | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/shared/src/commonTest/kotlin/com/prof18/feedflow/domain/DateFormatterTest.kt b/shared/src/commonTest/kotlin/com/prof18/feedflow/domain/DateFormatterTest.kt index e54f86dd..a9399358 100644 --- a/shared/src/commonTest/kotlin/com/prof18/feedflow/domain/DateFormatterTest.kt +++ b/shared/src/commonTest/kotlin/com/prof18/feedflow/domain/DateFormatterTest.kt @@ -25,12 +25,10 @@ class DateFormatterTest { @Test fun `getDateMillisFromString returns correct values`() { for (input in testInputs) { + println("Testing input: $input") + println("Result:") + println(dateFormatter.getDateMillisFromString(input.first)) assertEquals(input.second, dateFormatter.getDateMillisFromString(input.first)) } } - - @Test - fun fakeTest() { - assertTrue(true) - } }