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

Unified Diff: chrome/test/ui/ui_test.cc

Issue 6111011: Move launcher_.reset() from UITestBase constructor to SetUp(). (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Move launcher_.reset() from constructor into SetUp(). Created 9 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/ui/ui_test.cc
diff --git a/chrome/test/ui/ui_test.cc b/chrome/test/ui/ui_test.cc
index a2d658e0e611a2c5213e09422d68c5355cd0678c..c2c7b856a985539f369f86597d8e851497b4241b 100644
--- a/chrome/test/ui/ui_test.cc
+++ b/chrome/test/ui/ui_test.cc
@@ -93,7 +93,6 @@ UITestBase::UITestBase()
shutdown_type_(ProxyLauncher::WINDOW_CLOSE) {
PathService::Get(chrome::DIR_APP, &browser_directory_);
PathService::Get(chrome::DIR_TEST_DATA, &test_data_directory_);
- launcher_.reset(CreateProxyLauncher());
}
UITestBase::UITestBase(MessageLoop::Type msg_loop_type)
@@ -110,12 +109,13 @@ UITestBase::UITestBase(MessageLoop::Type msg_loop_type)
shutdown_type_(ProxyLauncher::WINDOW_CLOSE) {
PathService::Get(chrome::DIR_APP, &browser_directory_);
PathService::Get(chrome::DIR_TEST_DATA, &test_data_directory_);
- launcher_.reset(CreateProxyLauncher());
}
UITestBase::~UITestBase() {}
void UITestBase::SetUp() {
+ if (!launcher_.get())
Paweł Hajdan Jr. 2011/01/12 21:34:29 nit: Add a comment above why this NULL-check is ne
+ launcher_.reset(CreateProxyLauncher());
launcher_->AssertAppNotRunning(L"Please close any other instances "
L"of the app before testing.");
« chrome/test/automation/automation_proxy_uitest.h ('K') | « chrome/test/automation/proxy_launcher.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698