mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
add test
This commit is contained in:
parent
870758c3d0
commit
3e098270ea
@ -0,0 +1,33 @@
|
||||
package cn.hutool.core.bean;
|
||||
|
||||
import cn.hutool.core.annotation.Alias;
|
||||
import lombok.Data;
|
||||
import lombok.Setter;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
public class IssueI8JASOTest {
|
||||
|
||||
@Test
|
||||
public void copyTest() {
|
||||
final UserOne userOne = new UserOne();
|
||||
userOne.setEmail("123@qq.com");
|
||||
final UserTwo userTwo = new UserTwo();
|
||||
BeanUtil.copyProperties(userOne, userTwo);
|
||||
Assert.assertEquals(userOne.getEmail(), userTwo.getEmail());
|
||||
}
|
||||
|
||||
@Data
|
||||
public static class UserOne {
|
||||
private Long id;
|
||||
@Alias("邮箱")
|
||||
private String email;
|
||||
}
|
||||
|
||||
@Data
|
||||
public static class UserTwo {
|
||||
private Long id;
|
||||
@Alias("邮箱")
|
||||
private String email;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user