Skip to content

Commit

Permalink
Merge pull request #36 from Nexters/feature/35-redis-test
Browse files Browse the repository at this point in the history
RedisTest 추가
  • Loading branch information
emost22 authored Feb 5, 2024
2 parents 685f229 + 2a2a380 commit 9dbb16b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/test/java/com/pcb/audy/test/RedisTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package com.pcb.audy.test;

import java.util.Set;

public interface RedisTest {
String TEST_KEY = "key";
String TEST_VALUE = "value";
long TEST_EXPIRE_TIME = 10 * 60 * 1000L;
Set<String> TEST_KEYS = Set.of(TEST_KEY);
}

0 comments on commit 9dbb16b

Please sign in to comment.