Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / build / android / pylib / uiautomator / test_options.py
blob3f5f9504e139fe4a0d33915b05530abddcd51d55
1 # Copyright 2013 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 """Defines the UIAutomatorOptions named tuple."""
7 import collections
9 UIAutomatorOptions = collections.namedtuple('UIAutomatorOptions', [
10 'tool',
11 'annotations',
12 'exclude_annotations',
13 'test_filter',
14 'test_data',
15 'save_perf_json',
16 'screenshot_failures',
17 'uiautomator_jar',
18 'uiautomator_info_jar',
19 'package',
20 'set_asserts'])