X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fsal%2Fapi%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Freader%2FNodeTableStatisticsTest.java;h=a29d4268dab2c02f55006ff948a1735ee65125ea;hb=e640f23d9c37afac9ca51f48e155302bc65327ed;hp=c0d6bb698a7b0cf9112bcfa51b8e95ce2e20cf5b;hpb=7e760258c7948cbaa326a145291c424c8fe0f13b;p=controller.git diff --git a/opendaylight/sal/api/src/test/java/org/opendaylight/controller/sal/reader/NodeTableStatisticsTest.java b/opendaylight/sal/api/src/test/java/org/opendaylight/controller/sal/reader/NodeTableStatisticsTest.java index c0d6bb698a..a29d4268da 100644 --- a/opendaylight/sal/api/src/test/java/org/opendaylight/controller/sal/reader/NodeTableStatisticsTest.java +++ b/opendaylight/sal/api/src/test/java/org/opendaylight/controller/sal/reader/NodeTableStatisticsTest.java @@ -24,12 +24,14 @@ public class NodeTableStatisticsTest { ntStats.setActiveCount(100); ntStats.setLookupCount(200); ntStats.setMatchedCount(500); + ntStats.setMaximumEntries(1000); ntStats.setName("Test"); Assert.assertTrue(ntStats.getNodeTable().equals(nt)); Assert.assertTrue(ntStats.getActiveCount() == 100); Assert.assertTrue(ntStats.getLookupCount() == 200); Assert.assertTrue(ntStats.getMatchedCount() == 500); + Assert.assertTrue(ntStats.getMaximumEntries() == 1000); Assert.assertTrue(ntStats.getName().equals("Test")); } }