mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-08-18 20:38:02 +08:00
add test
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user