Merge branch 'master' of ../controller
[yangtools.git] / common / util / src / test / java / org / opendaylight / yangtools / util / LazyCollectionsTest.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.yangtools.util;
9
10 import static org.junit.Assert.assertEquals;
11
12 import java.util.ArrayList;
13 import java.util.List;
14 import org.junit.Test;
15
16 public class LazyCollectionsTest {
17
18     @Test
19     public void testLazyAddMethod() {
20         final List<Integer> list = new ArrayList<>();
21         List<Integer> anotherList = LazyCollections.lazyAdd(list, 5);
22         assertEquals(1, anotherList.size());
23
24         anotherList = LazyCollections.lazyAdd(anotherList, 4);
25         assertEquals(2, anotherList.size());
26
27         anotherList = LazyCollections.lazyAdd(anotherList, 3);
28         assertEquals(3, anotherList.size());
29     }
30 }