X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Futils%2FNormalizedNodeAggregatorTest.java;h=f84e51672011ac2e9fb9f0d2f0b3bad3875a20aa;hp=c8d3dd5ea7b76dc87b268eca2ad76655ccc82f78;hb=5464f50be733df1bbbe31cf05665d542d3b7c5e7;hpb=aa77e20225cc04235315892cf148393149cbf8fc diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/utils/NormalizedNodeAggregatorTest.java b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/utils/NormalizedNodeAggregatorTest.java index c8d3dd5ea7..f84e516720 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/utils/NormalizedNodeAggregatorTest.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/utils/NormalizedNodeAggregatorTest.java @@ -10,6 +10,7 @@ package org.opendaylight.controller.cluster.datastore.utils; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; + import com.google.common.base.Optional; import com.google.common.collect.ImmutableList; import com.google.common.util.concurrent.CheckedFuture; @@ -37,7 +38,8 @@ import org.opendaylight.yangtools.yang.model.api.SchemaContext; public class NormalizedNodeAggregatorTest { @Test - public void testAggregate() throws InterruptedException, ExecutionException, ReadFailedException, DataValidationFailedException { + public void testAggregate() throws InterruptedException, ExecutionException, ReadFailedException, + DataValidationFailedException { SchemaContext schemaContext = SchemaContextHelper.full(); NormalizedNode expectedNode1 = ImmutableNodes.containerNode(TestModel.TEST_QNAME); NormalizedNode expectedNode2 = ImmutableNodes.containerNode(CarsModel.CARS_QNAME); @@ -53,9 +55,10 @@ public class NormalizedNodeAggregatorTest { assertTrue("Expect value to be a Collection", normalizedNode.getValue() instanceof Collection); + @SuppressWarnings("unchecked") Collection> collection = (Collection>) normalizedNode.getValue(); - for(NormalizedNode node : collection){ + for (NormalizedNode node : collection) { assertTrue("Expected " + node + " to be a ContainerNode", node instanceof ContainerNode); } @@ -97,14 +100,13 @@ public class NormalizedNodeAggregatorTest { } } - public static NormalizedNode findChildWithQName(Collection> collection, QName qName) { - for(NormalizedNode node : collection){ - if(node.getNodeType().equals(qName)){ + public static NormalizedNode findChildWithQName(Collection> collection, QName qname) { + for (NormalizedNode node : collection) { + if (node.getNodeType().equals(qname)) { return node; } } return null; } - -} \ No newline at end of file +}