OFoverlay statistics test improvement
[groupbasedpolicy.git] / renderers / ofoverlay / src / test / java / org / opendaylight / groupbasedpolicy / renderer / ofoverlay / statistics / flowcache / FlowCacheKeysTest.java
1 package org.opendaylight.groupbasedpolicy.renderer.ofoverlay.statistics.flowcache;\r
2 \r
3 import static org.junit.Assert.assertNotNull;\r
4 import static org.junit.Assert.fail;\r
5 \r
6 import org.junit.Test;\r
7 \r
8 public class FlowCacheKeysTest {\r
9 \r
10     @Test\r
11     public void testBuilder() {\r
12         FlowCacheKeys.FlowCacheKeysBuilder builder = null;\r
13         try {\r
14             builder = FlowCacheKeys.builder();\r
15         } catch (Exception e) {\r
16             fail("Exception thrown: " + e.getMessage());\r
17         }\r
18         assertNotNull(builder);\r
19     }\r
20 \r
21 }\r