This commit is contained in:
Looly 2024-08-24 13:02:05 +08:00
parent 662bb5ce21
commit 166ee9eeec

View File

@ -0,0 +1,14 @@
package org.dromara.hutool.core.convert;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import java.math.BigDecimal;
public class IssueIALV38Test {
@Test
void name() {
final Object o = ConvertUtil.convertWithCheck(BigDecimal.class, " 111啊", null, false);
Assertions.assertEquals(new BigDecimal("111"), o);
}
}