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 "bin/eventhandler.h" | 5 #include "bin/eventhandler.h" |
6 #include "platform/assert.h" | 6 #include "platform/assert.h" |
7 #include "vm/unit_test.h" | 7 #include "vm/unit_test.h" |
8 | 8 |
9 namespace dart { | 9 namespace dart { |
10 namespace bin { | 10 namespace bin { |
11 | 11 |
12 UNIT_TEST_CASE(CircularLinkedList) { | 12 VM_UNIT_TEST_CASE(CircularLinkedList) { |
13 CircularLinkedList<int> list; | 13 CircularLinkedList<int> list; |
14 | 14 |
15 EXPECT(!list.HasHead()); | 15 EXPECT(!list.HasHead()); |
16 | 16 |
17 list.Add(1); | 17 list.Add(1); |
18 EXPECT(list.HasHead()); | 18 EXPECT(list.HasHead()); |
19 EXPECT(list.head() == 1); | 19 EXPECT(list.head() == 1); |
20 | 20 |
21 | 21 |
22 // Test: Inserts don't move head. | 22 // Test: Inserts don't move head. |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 list.Remove(10); | 82 list.Remove(10); |
83 EXPECT(!list.HasHead()); | 83 EXPECT(!list.HasHead()); |
84 | 84 |
85 | 85 |
86 // Test: Remove non-existent element from empty list works. | 86 // Test: Remove non-existent element from empty list works. |
87 list.Remove(4242); | 87 list.Remove(4242); |
88 } | 88 } |
89 | 89 |
90 } // namespace bin | 90 } // namespace bin |
91 } // namespace dart | 91 } // namespace dart |
OLD | NEW |