21 lines
356 B
Java
21 lines
356 B
Java
package com.greenorange.promotion;
|
|
|
|
import com.auth0.jwt.JWT;
|
|
import com.auth0.jwt.algorithms.Algorithm;
|
|
import org.junit.jupiter.api.Test;
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
|
|
import java.util.Calendar;
|
|
import java.util.HashMap;
|
|
|
|
@SpringBootTest
|
|
class GreenOrangeApplicationTests {
|
|
|
|
@Test
|
|
void contextLoads() {
|
|
|
|
|
|
}
|
|
|
|
}
|