chromium/base/component_export_unittest.cc

// Copyright 2018 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/component_export.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace base {
namespace {

ComponentExportTest;

#define IS_TEST_COMPONENT_A_IMPL
#define IS_TEST_COMPONENT_B_IMPL
#define IS_TEST_COMPONENT_C_IMPL
#define IS_TEST_COMPONENT_D_IMPL
#define IS_TEST_COMPONENT_E_IMPL

TEST(ComponentExportTest, ImportExport) {}

#undef IS_TEST_COMPONENT_A_IMPL
#undef IS_TEST_COMPONENT_B_IMPL
#undef IS_TEST_COMPONENT_C_IMPL
#undef IS_TEST_COMPONENT_D_IMPL
#undef IS_TEST_COMPONENT_E_IMPL

}  // namespace
}  // namespace base