BAIS payments 멀티모듈 최소 구현 #2

Open
forge-bot wants to merge 5 commits from forge/BAIS-CI-1783819034-attempt-2 into main
Showing only changes of commit 824885bef3 - Show all commits

View file

@ -0,0 +1,22 @@
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class PaymentReferenceServiceTest {
PaymentReferenceService service = new PaymentReferenceService();
@Test
void testNormalize_null() {
assertEquals("", service.normalize(null));
}
@Test
void testNormalize_empty() {
assertEquals("", service.normalize(""));
}
@Test
void testNormalize_normalString() {
assertEquals("test", service.normalize(" test "));
}
}