blob: 92865c05ca3edd99a60dbdd912e2b90947e27649 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright (c) 2009 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/test/chrome_process_util.h"
#include "chrome/test/ui/ui_test.h"
class ChromeProcessUtilTest : public UITest {
};
TEST_F(ChromeProcessUtilTest, SanityTest) {
EXPECT_TRUE(IsBrowserRunning());
ChromeProcessList processes = GetRunningChromeProcesses(browser_process_id());
EXPECT_FALSE(processes.empty());
QuitBrowser();
EXPECT_FALSE(IsBrowserRunning());
EXPECT_EQ(-1, browser_process_id());
processes = GetRunningChromeProcesses(browser_process_id());
EXPECT_TRUE(processes.empty());
}
|