DJBErp -> DJB 클래스 이름 첨자 변경
This commit is contained in:
+5
-5
@@ -33,7 +33,7 @@ import com.eactive.eai.common.security.CryptoModuleService;
|
||||
import com.eactive.eai.common.util.ApplicationContextProvider;
|
||||
|
||||
@TestMethodOrder(MethodOrderer.DisplayName.class)
|
||||
class DJBErpCryptoFunctionTest {
|
||||
class DJBCryptoFunctionTest {
|
||||
|
||||
private static final String MODULE_NAME = "TEST_MODULE";
|
||||
private static final String PLAIN_TEXT = "plaintext-value";
|
||||
@@ -44,8 +44,8 @@ class DJBErpCryptoFunctionTest {
|
||||
private static GenericApplicationContext ctx;
|
||||
private static CryptoModuleService mockService;
|
||||
|
||||
private DJBErpDecryt decryt;
|
||||
private DJBErpEncryt encryt;
|
||||
private DJBDecryt decryt;
|
||||
private DJBEncryt encryt;
|
||||
|
||||
// =========================================================================
|
||||
// 클래스 초기화
|
||||
@@ -73,8 +73,8 @@ class DJBErpCryptoFunctionTest {
|
||||
reset(mockService);
|
||||
when(mockService.decrypt(any(), anyMap(), isNull(), any(byte[].class))).thenReturn(PLAIN_BYTES);
|
||||
when(mockService.encrypt(any(), anyMap(), isNull(), any(byte[].class))).thenReturn(CIPHER_BYTES);
|
||||
decryt = new DJBErpDecryt();
|
||||
encryt = new DJBErpEncryt();
|
||||
decryt = new DJBDecryt();
|
||||
encryt = new DJBEncryt();
|
||||
}
|
||||
|
||||
// =========================================================================
|
||||
Reference in New Issue
Block a user