| 12345678910111213141516171819202122232425262728293031323334 |
- package com.example.asdfasdfawf
- import com.example.modifier.Utils
- import com.example.modifier.utils.genICCID
- import com.example.modifier.utils.genIMEI
- import com.example.modifier.utils.genIMSI
- import kotlinx.coroutines.CoroutineScope
- import kotlinx.coroutines.Dispatchers
- import kotlinx.coroutines.coroutineScope
- import kotlinx.coroutines.delay
- import kotlinx.coroutines.launch
- import kotlinx.coroutines.runBlocking
- import kotlinx.coroutines.withTimeout
- import org.junit.Test
- import org.junit.Assert.*
- import java.time.LocalDateTime
- import java.time.ZoneId
- import java.time.ZonedDateTime
- import java.time.format.DateTimeFormatter
- /**
- * Example local unit test, which will execute on the development machine (host).
- *
- * See [testing documentation](http://d.android.com/tools/testing).
- */
- class ExampleUnitTest {
- @Test
- fun test1() {
- println(genIMEI())
- println(genICCID("240", "1"))
- println(genIMSI("310240"))
- }
- }
|