chromium/ui/shell_dialogs/run_all_unittests.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/functional/bind.h"
#include "base/path_service.h"
#include "base/test/launcher/unit_test_launcher.h"
#include "base/test/test_suite.h"
#include "build/build_config.h"
#include "mojo/core/embedder/embedder.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/base/ui_base_paths.h"

#if BUILDFLAG(IS_MAC)
#include "base/test/mock_chrome_application_mac.h"
#endif

namespace {

class ShellDialogsTestSuite : public base::TestSuite {};

ShellDialogsTestSuite::ShellDialogsTestSuite(int argc, char** argv)
    :{}

void ShellDialogsTestSuite::Initialize() {}

void ShellDialogsTestSuite::Shutdown() {}

}  // namespace

int main(int argc, char** argv) {}