23 lines
398 B
Java
23 lines
398 B
Java
package com.inmind;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
|
|
import java.util.UUID;
|
|
|
|
@SpringBootTest
|
|
class TliasWebManagementApplicationTests {
|
|
|
|
@Test
|
|
void contextLoads() {
|
|
}
|
|
|
|
@Test
|
|
void testUUID() {
|
|
for (int i = 0; i < 100; i++) {
|
|
System.out.println(UUID.randomUUID().toString());
|
|
}
|
|
}
|
|
|
|
}
|