Fix duplicate code in Jpa classes
[policy/models.git] / models-tosca / src / test / java / org / onap / policy / models / tosca / simple / concepts / TestPojos.java
index 9e8edc7..250a819 100644 (file)
@@ -2,7 +2,7 @@
  * ============LICENSE_START=======================================================
  * ONAP Policy Model
  * ================================================================================
- * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2019, 2021 AT&T Intellectual Property. All rights reserved.
  * Modifications Copyright (C) 2019 Nordix Foundation.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -53,6 +53,9 @@ public class TestPojos {
                 .build();
         // @formatter:on
 
-        validator.validate(POJO_PACKAGE, new FilterPackageInfo());
+        validator.validate(POJO_PACKAGE,
+            new FilterPackageInfo(),
+            pc -> !pc.getName().startsWith("Test"),
+            pc -> !pc.getName().endsWith("Test"));
     }
 }