forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_launcher_delegate_impl.cc
33 lines (26 loc) · 1.01 KB
/
test_launcher_delegate_impl.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright 2019 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 "weblayer/test/test_launcher_delegate_impl.h"
#include "base/command_line.h"
#include "base/test/test_suite.h"
#include "weblayer/app/content_main_delegate_impl.h"
#include "weblayer/public/common/switches.h"
#include "weblayer/shell/app/shell_main_params.h"
namespace weblayer {
int TestLauncherDelegateImpl::RunTestSuite(int argc, char** argv) {
base::TestSuite test_suite(argc, argv);
// Browser tests are expected not to tear-down various globals.
test_suite.DisableCheckForLeakedGlobals();
return test_suite.Run();
}
std::string TestLauncherDelegateImpl::GetUserDataDirectoryCommandLineSwitch() {
return switches::kWebLayerUserDataDir;
}
#if !defined(OS_ANDROID)
content::ContentMainDelegate*
TestLauncherDelegateImpl::CreateContentMainDelegate() {
return new ContentMainDelegateImpl(CreateMainParams());
}
#endif
} // namespace weblayer