This commit is contained in:
Looly 2024-03-07 10:50:29 +08:00
parent 051ce35828
commit 119caa5ab3

View File

@ -0,0 +1,16 @@
package org.dromara.hutool.core.bean;
import lombok.Data;
import org.junit.jupiter.api.Test;
public class IssueI96JIPTest {
@Test
void copyPropertiesTest() {
BeanUtil.copyProperties(new TestBean(), new TestBean());
}
@Data
static class TestBean {
private String name;
}
}