chromium/chrome/browser/extensions/pack_extension_unittest.cc

// Copyright 2013 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/command_line.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
#include "base/path_service.h"
#include "chrome/browser/extensions/startup_helper.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/chrome_switches.h"
#include "content/public/test/browser_task_environment.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace extensions {

// Tests the environment for packing extensions from the command line
// when using the --pack-extension switch.
class PackExtensionTest : public testing::Test {};

TEST_F(PackExtensionTest, Extension) {}

TEST_F(PackExtensionTest, ExtensionWithManagedStorage) {}

TEST_F(PackExtensionTest, PackagedApp) {}

TEST_F(PackExtensionTest, PlatformApp) {}

}  // namespace extensions