blob: 761a359fbd2e7c0cffa29d17b8b6291858ebe44a [file] [log] [blame]
// Copyright 2015 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 "ash/test/ash_test_suite.h"
#include "base/bind.h"
#include "base/test/launcher/unit_test_launcher.h"
#if !defined(OS_IOS)
#include "mojo/core/embedder/embedder.h"
#endif
int main(int argc, char** argv) {
ash::AshTestSuite test_suite(argc, argv);
#if !defined(OS_IOS)
mojo::core::Init();
#endif
return base::LaunchUnitTestsSerially(
argc, argv,
base::BindOnce(&ash::AshTestSuite::Run, base::Unretained(&test_suite)));
}