mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-04-19 03:01:48 +08:00
add test
This commit is contained in:
parent
051ce35828
commit
119caa5ab3
@ -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;
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user