34036edc05866ff7a4c658833a36a29ce3b1517d
[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.*;
11
12 import org.junit.Test;
13
14 public class CompareLf {
15
16     @Test
17     public void test() {
18         Lf lf1 = new Lf("name", "value");
19         Lf lf2 = new Lf("name", "value");
20         Lf lf3 = new Lf("name1", "value");
21         Lf lf4 = new Lf("name", "value1");
22
23         assertTrue(lf1.equals(lf2));
24         assertFalse(lf1.equals(lf3));
25         assertFalse(lf1.equals(lf4));
26     }
27
28 }