chromium/chrome/browser/web_applications/preinstalled_web_apps/preinstalled_web_app_definition_utils_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 "chrome/browser/web_applications/preinstalled_web_apps/preinstalled_web_app_definition_utils.h"

#include "build/build_config.h"
#include "chrome/browser/browser_process.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace web_app {

class PreinstalledWebAppUtilsTest : public testing::Test {};

// https://crbug.com/1198780 tracks test failures due to memory smashing on
// Linux, ChromeOS, and the Mac.
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_MAC)
#define MAYBE_GetTranslatedName
#else
#define MAYBE_GetTranslatedName
#endif
TEST_F(PreinstalledWebAppUtilsTest, MAYBE_GetTranslatedName) {}

}  // namespace web_app