BAIS payments 멀티모듈 최소 구현 (BAIS-REM-1783820063)
Some checks failed
ci / test (pull_request) Failing after 1m5s

This commit is contained in:
forge-bot 2026-07-12 01:34:50 +00:00
parent 3a5d2fa075
commit 35eac72305

View file

@ -0,0 +1,23 @@
package com.klaro.bais.payments;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class PaymentReferenceServiceTest {
private final PaymentReferenceService service = new PaymentReferenceService();
@Test
void testNormalize_NullInput() {
assertEquals("", service.normalize(null));
}
@Test
void testNormalize_EmptyString() {
assertEquals("", service.normalize(" "));
}
@Test
void testNormalize_ValidString() {
assertEquals("Hello World", service.normalize(" Hello World "));
}
}