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

Open
forge-bot wants to merge 9 commits from forge/BAIS-MULTI-1783809014-attempt-1 into main
Showing only changes of commit c7e22c4b1e - Show all commits

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;
public class PaymentReferenceServiceTest {
private final PaymentReferenceService service = new PaymentReferenceService();
@Test
public void testNormalize_null() {
assertEquals("", service.normalize(null));
}
@Test
public void testNormalize_empty() {
assertEquals("", service.normalize(" "));
}
@Test
public void testNormalize_normalString() {
assertEquals("validString", service.normalize(" validString "));
}
}