9d36de336bba95f739d90c7d0bca176b89a52548
[yangtools.git] / third-party / triemap / src / test / java / com / romix / scala / collection / concurrent / TestCNodeInsertionIncorrectOrder.java
1 package com.romix.scala.collection.concurrent;\r
2 \r
3 import java.util.Map;\r
4 \r
5 import org.junit.Test;\r
6 \r
7 public class TestCNodeInsertionIncorrectOrder {\r
8 \r
9     @Test\r
10     public void testCNodeInsertionIncorrectOrder () {\r
11         final Map<Object, Object> map = new TrieMap<Object, Object> ();\r
12         final Integer z3884 = Integer.valueOf (3884);\r
13         final Integer z4266 = Integer.valueOf (4266);\r
14         map.put (z3884, z3884);\r
15         TestHelper.assertTrue (null != map.get (z3884));\r
16         \r
17         map.put (z4266, z4266);\r
18         TestHelper.assertTrue (null != map.get (z3884));\r
19         TestHelper.assertTrue (null != map.get (z4266));\r
20     }\r
21 }\r