| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #include "platform/assert.h" | 5 #include "platform/assert.h" |
| 6 #include "vm/unit_test.h" | 6 #include "vm/unit_test.h" |
| 7 #include "vm/hash_map.h" | 7 #include "vm/hash_map.h" |
| 8 | 8 |
| 9 namespace dart { | 9 namespace dart { |
| 10 | 10 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 EXPECT(map.IsEmpty()); | 23 EXPECT(map.IsEmpty()); |
| 24 TestValue v1(0); | 24 TestValue v1(0); |
| 25 TestValue v2(1); | 25 TestValue v2(1); |
| 26 TestValue v3(0); | 26 TestValue v3(0); |
| 27 map.Insert(&v1); | 27 map.Insert(&v1); |
| 28 EXPECT(map.Lookup(&v1) == &v1); | 28 EXPECT(map.Lookup(&v1) == &v1); |
| 29 map.Insert(&v2); | 29 map.Insert(&v2); |
| 30 EXPECT(map.Lookup(&v1) == &v1); | 30 EXPECT(map.Lookup(&v1) == &v1); |
| 31 EXPECT(map.Lookup(&v2) == &v2); | 31 EXPECT(map.Lookup(&v2) == &v2); |
| 32 EXPECT(map.Lookup(&v3) == &v1); | 32 EXPECT(map.Lookup(&v3) == &v1); |
| 33 DirectChainedHashMap<TestValue*> map2(map); |
| 34 EXPECT(map2.Lookup(&v1) == &v1); |
| 35 EXPECT(map2.Lookup(&v2) == &v2); |
| 36 EXPECT(map2.Lookup(&v3) == &v1); |
| 33 } | 37 } |
| 34 | 38 |
| 35 } // namespace dart | 39 } // namespace dart |
| OLD | NEW |