39233deb6a39eb1fc1ca63e8ecc6c63f7f51d3dc
[yangtools.git] / third-party / triemap / src / test / java / org / opendaylight / yangtools / triemap / TestCNodeFlagCollision.java
1 /*
2  * (C) Copyright 2016 Pantheon Technologies, s.r.o. and others.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.opendaylight.yangtools.triemap;
17
18 import static org.junit.Assert.assertNull;
19 import static org.junit.Assert.assertSame;
20
21 import java.util.Map;
22 import org.junit.Test;
23
24 public class TestCNodeFlagCollision {
25     @Test
26     public void testCNodeFlagCollision () {
27         final Map<Integer, Object> map = TrieMap.create();
28         final Integer z15169 = Integer.valueOf(15169);
29         final Integer z28336 = Integer.valueOf(28336);
30
31         assertNull(map.get(z15169));
32         assertNull(map.get(z28336));
33
34         map.put(z15169, z15169);
35         assertSame(z15169, map.get(z15169));
36         assertNull(map.get(z28336));
37
38         map.put (z28336, z28336);
39         assertSame(z15169, map.get(z15169));
40         assertSame(z28336, map.get(z28336));
41
42         map.remove (z15169);
43
44         assertNull(map.get(z15169));
45         assertSame(z28336, map.get(z28336));
46
47         map.remove (z28336);
48
49         assertNull(map.get(z15169));
50         assertNull(map.get(z28336));
51     }
52 }