Enable MSVC warning for unused locals.
[chromium-blink-merge.git] / chrome / installer / util / product_unittest.h
blob4d1ccaa6cb491057310a53578397566d02dfbbfc
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_INSTALLER_UTIL_PRODUCT_UNITTEST_H_
6 #define CHROME_INSTALLER_UTIL_PRODUCT_UNITTEST_H_
8 #include <windows.h>
10 #include "base/files/file_path.h"
11 #include "base/files/scoped_temp_dir.h"
12 #include "testing/gtest/include/gtest/gtest.h"
14 class TestWithTempDir : public testing::Test {
15 protected:
16 virtual void SetUp();
17 virtual void TearDown();
19 base::ScopedTempDir test_dir_;
22 class TestWithTempDirAndDeleteTempOverrideKeys : public TestWithTempDir {
23 protected:
24 virtual void SetUp();
25 virtual void TearDown();
28 #endif // CHROME_INSTALLER_UTIL_PRODUCT_UNITTEST_H_