Bug 2907 - corrections for upgrade to karaf 3.0.3
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / java / org / opendaylight / controller / sal / restconf / impl / test / structures / CompareLf.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.sal.restconf.impl.test.structures;
9
10 import static org.junit.Assert.assertFalse;
11 import static org.junit.Assert.assertTrue;
12
13 import org.junit.Test;
14
15 public class CompareLf {
16
17     @Test
18     public void test() {
19         Lf lf1 = new Lf("name", "value");
20         Lf lf2 = new Lf("name", "value");
21         Lf lf3 = new Lf("name1", "value");
22         Lf lf4 = new Lf("name", "value1");
23
24         assertTrue(lf1.equals(lf2));
25         assertFalse(lf1.equals(lf3));
26         assertFalse(lf1.equals(lf4));
27     }
28
29 }