OLD | NEW |
| (Empty) |
1 # Copyright (c) 2014 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 | |
6 class Environment(object): | |
7 def __init__(self, base_paths, test_aliases=None): | |
8 self._base_paths = base_paths | |
9 if test_aliases: | |
10 self._test_aliases = test_aliases | |
11 else: | |
12 self._test_aliases = {} | |
13 | |
14 @property | |
15 def base_paths(self): | |
16 return self._base_paths | |
17 | |
18 @property | |
19 def test_aliases(self): | |
20 return self._test_aliases | |
OLD | NEW |