BAIS payments 멀티모듈 최소 구현 (BAIS-CTX-1783821073)
All checks were successful
ci / test (pull_request) Successful in 1m18s

This commit is contained in:
forge-bot 2026-07-12 01:55:52 +00:00
parent 20ea4732a7
commit c52405f3af

View file

@ -0,0 +1,24 @@
package com.klaro.bais.payments;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
class PaymentReferenceServiceTest {
private final PaymentReferenceService service = new PaymentReferenceService();
@Test
void testNormalizeNull() {
assertEquals("", service.normalize(null));
}
@Test
void testNormalizeEmpty() {
assertEquals("", service.normalize(" "));
}
@Test
void testNormalizeNormalString() {
assertEquals("test", service.normalize(" test "));
}
}