20 lines
465 B
Java
20 lines
465 B
Java
package com.szxgl.vote2021;
|
|
|
|
import com.szxgl.vote2021.utils.RedisUtil;
|
|
import org.junit.jupiter.api.Test;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
import org.springframework.data.redis.core.RedisTemplate;
|
|
import org.springframework.data.redis.core.ZSetOperations;
|
|
|
|
import java.util.Set;
|
|
|
|
@SpringBootTest
|
|
class H52021ApplicationTests {
|
|
|
|
@Test
|
|
void contextLoads() {
|
|
}
|
|
|
|
}
|