Migrate to tech.pantheon.TrieMap
[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 @Deprecated
25 public class TestCNodeFlagCollision {
26     @Test
27     public void testCNodeFlagCollision() {
28         final Map<Integer, Object> map = TrieMap.create();
29         final Integer z15169 = Integer.valueOf(15169);
30         final Integer z28336 = Integer.valueOf(28336);
31
32         assertNull(map.get(z15169));
33         assertNull(map.get(z28336));
34
35         map.put(z15169, z15169);
36         assertSame(z15169, map.get(z15169));
37         assertNull(map.get(z28336));
38
39         map.put(z28336, z28336);
40         assertSame(z15169, map.get(z15169));
41         assertSame(z28336, map.get(z28336));
42
43         map.remove(z15169);
44
45         assertNull(map.get(z15169));
46         assertSame(z28336, map.get(z28336));
47
48         map.remove(z28336);
49
50         assertNull(map.get(z15169));
51         assertNull(map.get(z28336));
52     }
53 }