14 lines
180 B
Kotlin
14 lines
180 B
Kotlin
package com.example.hpostesting
|
|
|
|
import org.junit.Test
|
|
import java.util.Date
|
|
|
|
class OtherTests {
|
|
|
|
@Test
|
|
fun uniqueId() {
|
|
val date = Date()
|
|
date.day
|
|
}
|
|
|
|
} |