BAIS payments 멀티모듈 최소 구현 (BAIS-HALT-1783815860)
Some checks failed
ci / test (pull_request) Failing after 1m6s

This commit is contained in:
forge-bot 2026-07-12 00:29:07 +00:00
parent 6ad9bd6403
commit 890d78cf6d

View file

@ -0,0 +1,24 @@
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class PaymentReferenceServiceTest {
private final PaymentReferenceService service = new PaymentReferenceService();
@Test
void testNormalize_WithNullInput() {
String result = service.normalize(null);
assertEquals("", result);
}
@Test
void testNormalize_WithEmptyString() {
String result = service.normalize(" ");
assertEquals("", result);
}
@Test
void testNormalize_WithNormalString() {
String result = service.normalize(" Test String ");
assertEquals("Test String", result);
}
}