blob: 108febfed9e0db6546b3a1e0b67b7b355ef1d19c [file] [log] [blame]
Peter Qiuc0beca52015-09-03 11:25:46 -07001//
2// Copyright (C) 2011 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
Chris Masoneb9c00592011-10-06 13:10:39 -070016
17#include "shill/shill_test_config.h"
18
19#include <string>
20
Christopher Wileyb691efd2012-08-09 13:51:51 -070021#include "shill/logging.h"
Chris Masoneb9c00592011-10-06 13:10:39 -070022
23using std::string;
24
25namespace shill {
26
27TestConfig::TestConfig() {
28 CHECK(dir_.CreateUniqueTempDir());
29}
30
31TestConfig::~TestConfig() {
32}
33
34string TestConfig::GetRunDirectory() {
35 return dir_.path().value();
36}
37
38string TestConfig::GetStorageDirectory() {
39 return dir_.path().value();
40}
41
42} // namespace shill