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) - } }