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

Unified Diff: chrome/browser/ui/cocoa/run_loop_testing_unittest.mm

Issue 2565813002: Create c/b/ui/cocoa/test and move test files to there (Closed)
Patch Set: Rebase Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/run_loop_testing_unittest.mm
diff --git a/chrome/browser/ui/cocoa/run_loop_testing_unittest.mm b/chrome/browser/ui/cocoa/run_loop_testing_unittest.mm
deleted file mode 100644
index 760f9851e3ad8ae8e647c59efbbb33f49a028cc6..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/cocoa/run_loop_testing_unittest.mm
+++ /dev/null
@@ -1,59 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/ui/cocoa/run_loop_testing.h"
-
-#import <Foundation/Foundation.h>
-
-#include "base/mac/scoped_nsobject.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-@interface TestDelayed : NSObject {
- @private
- BOOL didWork_;
- TestDelayed* next_;
-}
-@property(readonly, nonatomic) BOOL didWork;
-@property(assign, nonatomic) TestDelayed* next;
-@end
-
-@implementation TestDelayed
-@synthesize didWork = didWork_;
-@synthesize next = next_;
-
-- (id)init {
- if ((self = [super init])) {
- [self performSelector:@selector(doWork) withObject:nil afterDelay:0];
- }
- return self;
-}
-
-- (void)doWork {
- didWork_ = YES;
- [next_ performSelector:@selector(doWork) withObject:nil afterDelay:0];
-}
-@end
-
-TEST(RunLoopTesting, RunAllPending) {
- base::scoped_nsobject<TestDelayed> tester([[TestDelayed alloc] init]);
- EXPECT_FALSE([tester didWork]);
-
- chrome::testing::NSRunLoopRunAllPending();
-
- EXPECT_TRUE([tester didWork]);
-}
-
-TEST(RunLoopTesting, NestedWork) {
- base::scoped_nsobject<TestDelayed> tester([[TestDelayed alloc] init]);
- base::scoped_nsobject<TestDelayed> nested([[TestDelayed alloc] init]);
- [tester setNext:nested];
-
- EXPECT_FALSE([tester didWork]);
- EXPECT_FALSE([nested didWork]);
-
- chrome::testing::NSRunLoopRunAllPending();
-
- EXPECT_TRUE([tester didWork]);
- EXPECT_TRUE([nested didWork]);
-}
« no previous file with comments | « chrome/browser/ui/cocoa/run_loop_testing.mm ('k') | chrome/browser/ui/cocoa/screen_capture_notification_ui_cocoa_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698