From cf748512392e5d3257de629dc57fb353dc073c92 Mon Sep 17 00:00:00 2001 From: ramverma Date: Wed, 17 Jul 2019 11:03:26 +0000 Subject: Changing policy/distribution to use policy/models 1) Changed policy distribution framework to use entities from policy/models 2) Changed all the test cases. 3) Commented few test cases which will be fixed along with code fixes. 4) Will be removing the old policy entities once all the pieces are ready. Change-Id: I1fd7b975b2e072c0b24e429903c9ca4796173929 Issue-ID: POLICY-1888 Signed-off-by: ramverma --- model/src/test/java/org/onap/policy/distribution/model/TestModels.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'model/src/test/java/org') diff --git a/model/src/test/java/org/onap/policy/distribution/model/TestModels.java b/model/src/test/java/org/onap/policy/distribution/model/TestModels.java index 060ab36f..db373f96 100644 --- a/model/src/test/java/org/onap/policy/distribution/model/TestModels.java +++ b/model/src/test/java/org/onap/policy/distribution/model/TestModels.java @@ -38,6 +38,6 @@ public class TestModels { @Test public void testAllModels() { final Validator validator = ValidatorBuilder.create().with(new SetterTester()).with(new GetterTester()).build(); - validator.validate(Policy.class.getPackage().getName(), new FilterPackageInfo()); + validator.validate(PolicyInput.class.getPackage().getName(), new FilterPackageInfo()); } } -- cgit 1.2.3-korg