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

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

Issue 2666133002: Added new type of unit test, RAW_UNIT_TEST_CASE, which is used for tests that can be flaky if run w… (Closed)
Patch Set: Fixed name of UNIT_TEST_CASE macro Created 3 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
« no previous file with comments | « runtime/bin/directory_test.cc ('k') | runtime/bin/hashmap_test.cc » ('j') | 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 "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
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
OLDNEW
« no previous file with comments | « runtime/bin/directory_test.cc ('k') | runtime/bin/hashmap_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698