Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(468)

Side by Side Diff: courgette/base_test_unittest.h

Issue 8252011: Add a basic backwards compatibility unittest. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fix file listings to fix windows build Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | courgette/base_test_unittest.cc » ('j') | courgette/image_info_unittest.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 #include <string>
6
7 #ifndef COURGETTE_BASE_TEST_UNITTEST_H_
8 #define COURGETTE_BASE_TEST_UNITTEST_H_
9
10 #include <string>
11
12 #include "base/file_util.h"
13 #include "testing/gtest/include/gtest/gtest.h"
14
15 class BaseTest : public testing::Test {
16 public:
17 std::string FileContents(const char* file_name) const;
18
19 private:
20 void SetUp();
Michael Krebs 2011/10/17 21:22:14 I believe this and TearDown() should be marked as
dgarrett 2011/10/17 21:50:59 Done.
21 void TearDown();
22
23 FilePath test_dir_;
24 };
25
26 #endif // COURGETTE_BASE_TEST_UNITTEST_H_
OLDNEW
« no previous file with comments | « no previous file | courgette/base_test_unittest.cc » ('j') | courgette/image_info_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698