[gui-test] Make currentTimeInHumanString public as it's often used on debugging from other modules

This commit is contained in:
Viktoria.Shirunova
2018-07-10 23:32:35 +03:00
parent e6eb7e4e1b
commit e8aed64d3c
@@ -13,7 +13,7 @@ fun GuiTestCase.logInfo(message: String) {
logger.info(message)
}
private val currentTimeInHumanString get() = SimpleDateFormat("yyyy.MM.dd_HH.mm.ss.SSS").format(System.currentTimeMillis())!!
val currentTimeInHumanString get() = SimpleDateFormat("yyyy.MM.dd_HH.mm.ss.SSS").format(System.currentTimeMillis())!!
fun GuiTestCase.logStartTest(testName: String) {
logInfo("----------------->>> ${currentTimeInHumanString}: Test `$testName` started")