Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(214)

Side by Side Diff: dart/runtime/bin/eventhandler_test.cc

Issue 915083002: Reorder includes and remove platform/globals include (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "platform/assert.h" 6 #include "platform/assert.h"
6 #include "platform/globals.h"
7 #include "vm/unit_test.h" 7 #include "vm/unit_test.h"
8 8
9 #include "bin/eventhandler.h"
10
11 namespace dart { 9 namespace dart {
12 namespace bin { 10 namespace bin {
13 11
14 UNIT_TEST_CASE(CircularLinkedList) { 12 UNIT_TEST_CASE(CircularLinkedList) {
15 CircularLinkedList<int> list; 13 CircularLinkedList<int> list;
16 14
17 EXPECT(!list.HasHead()); 15 EXPECT(!list.HasHead());
18 16
19 list.Add(1); 17 list.Add(1);
20 EXPECT(list.HasHead()); 18 EXPECT(list.HasHead());
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 list.Remove(10); 82 list.Remove(10);
85 EXPECT(!list.HasHead()); 83 EXPECT(!list.HasHead());
86 84
87 85
88 // Test: Remove non-existent element from empty list works. 86 // Test: Remove non-existent element from empty list works.
89 list.Remove(4242); 87 list.Remove(4242);
90 } 88 }
91 89
92 } // namespace bin 90 } // namespace bin
93 } // namespace dart 91 } // namespace dart
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698