blob: 153442cddb3171ad6d9b97141b281c08b5906adf [file] [log] [blame]
[email protected]1de7a172012-05-28 18:36:431// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]41f054c2011-07-26 17:11:432// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
[email protected]d85fe1e2013-09-05 18:20:365#include "base/bind.h"
John Abd-El-Malek446d8a62015-12-10 18:25:016#include "base/test/launcher/unit_test_launcher.h"
sammc406822fa2017-02-07 22:22:037#include "base/values.h"
[email protected]b1e3f202012-06-04 14:45:508#include "content/public/test/unittest_test_suite.h"
John Abd-El-Malek446d8a62015-12-10 18:25:019#include "content/test/content_test_suite.h"
rockota60bd4e2017-01-28 02:11:4010#include "content/test/content_unittests_catalog_source.h"
rockot0a386b5d92017-01-25 00:14:3411#include "services/catalog/catalog.h"
12
[email protected]41f054c2011-07-26 17:11:4313int main(int argc, char** argv) {
John Abd-El-Malekfbada2c2015-11-24 06:38:1514 content::UnitTestTestSuite test_suite(
15 new content::ContentTestSuite(argc, argv));
rockot0a386b5d92017-01-25 00:14:3416
rockota60bd4e2017-01-28 02:11:4017 catalog::Catalog::SetDefaultCatalogManifest(
18 content::CreateContentUnittestsCatalog());
rockot0a386b5d92017-01-25 00:14:3419
[email protected]d85fe1e2013-09-05 18:20:3620 return base::LaunchUnitTests(
21 argc, argv, base::Bind(&content::UnitTestTestSuite::Run,
22 base::Unretained(&test_suite)));
[email protected]41f054c2011-07-26 17:11:4323}