This commit is contained in:
tanghc
2019-11-05 16:37:16 +08:00
parent 4e8bdc4de4
commit 511370e9b3

View File

@@ -31,7 +31,7 @@ public class ValidatorTest extends TestCase {
public void testField() {
Manager manager = new Manager("Jim", 22, Type.TWO);
Manager manager = new Manager("Jim", 22, Type.TWO, Status.OK);
Store store = new Store("仓库A", manager, Type.ONE);
Goods goods = new Goods("Apple", new BigDecimal(50000), store);
serviceParamValidator.validateBizParam(goods);
@@ -90,10 +90,17 @@ public class ValidatorTest extends TestCase {
@NotNull(message = "Manager.type不能为空")
private Type type;
@NotNull(message = "Manager.status不能为空")
private Status status;
}
enum Type {
ONE,TWO
}
enum Status {
OK, ERROR
}
}