Add missing license headers
[groupbasedpolicy.git] / renderers / ofoverlay / src / test / java / org / opendaylight / groupbasedpolicy / renderer / ofoverlay / statistics / flowcache / FlowCacheFilterTest.java
1 /*\r
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.\r
3  *\r
4  * This program and the accompanying materials are made available under the\r
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
6  * and is available at http://www.eclipse.org/legal/epl-v10.html\r
7  */\r
8 package org.opendaylight.groupbasedpolicy.renderer.ofoverlay.statistics.flowcache;\r
9 \r
10 import static org.junit.Assert.assertNotNull;\r
11 import static org.junit.Assert.fail;\r
12 \r
13 import org.junit.Test;\r
14 \r
15 public class FlowCacheFilterTest {\r
16 \r
17     @Test\r
18     public void testBuilder() {\r
19         FlowCacheFilter.FlowCacheFilterBuilder builder = null;\r
20         try {\r
21             builder = FlowCacheFilter.builder();\r
22         } catch (Exception e) {\r
23             fail("Exception thrown: " + e.getMessage());\r
24         }\r
25         assertNotNull(builder);\r
26     }\r
27 \r
28 }\r