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

Side by Side Diff: courgette/base_test_unittest.cc

Issue 8252011: Add a basic backwards compatibility unittest. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fix review nits. 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
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 "courgette/base_test_unittest.h"
6
7 #include "base/path_service.h"
8
9 void BaseTest::SetUp() {
10 PathService::Get(base::DIR_SOURCE_ROOT, &test_dir_);
Paweł Hajdan Jr. 2011/10/19 08:46:39 Please check return value.
11 test_dir_ = test_dir_.AppendASCII("courgette");
12 test_dir_ = test_dir_.AppendASCII("testdata");
13 }
14
15 void BaseTest::TearDown() {
16 }
17
18 // Reads a test file into a string.
19 std::string BaseTest::FileContents(const char* file_name) const {
20 FilePath file_path = test_dir_;
21 file_path = file_path.AppendASCII(file_name);
22 std::string file_bytes;
23
24 EXPECT_TRUE(file_util::ReadFileToString(file_path, &file_bytes));
Paweł Hajdan Jr. 2011/10/19 08:46:39 Not sure if this test is valuable at all.
25
26 return file_bytes;
27 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698