OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 from pylib.base import base_test_result | 5 from pylib.base import base_test_result |
6 | 6 |
7 | 7 |
8 class InstrumentationTestResult(base_test_result.BaseTestResult): | 8 class InstrumentationTestResult(base_test_result.BaseTestResult): |
9 """Result information for a single instrumentation test.""" | 9 """Result information for a single instrumentation test.""" |
10 | 10 |
11 def __init__(self, full_name, test_type, start_date, dur, log=''): | 11 def __init__(self, full_name, test_type, start_date, dur, log=''): |
12 """Construct an InstrumentationTestResult object. | 12 """Construct an InstrumentationTestResult object. |
13 | 13 |
14 Args: | 14 Args: |
15 full_name: Full name of the test. | 15 full_name: Full name of the test. |
16 test_type: Type of the test result as defined in ResultType. | 16 test_type: Type of the test result as defined in ResultType. |
17 start_date: Date in milliseconds when the test began running. | 17 start_date: Date in milliseconds when the test began running. |
18 dur: Duration of the test run in milliseconds. | 18 dur: Duration of the test run in milliseconds. |
19 log: A string listing any errors. | 19 log: A string listing any errors. |
20 """ | 20 """ |
21 super(InstrumentationTestResult, self).__init__(full_name, test_type, log) | 21 super(InstrumentationTestResult, self).__init__( |
| 22 full_name, test_type, dur, log) |
22 name_pieces = full_name.rsplit('#') | 23 name_pieces = full_name.rsplit('#') |
23 if len(name_pieces) > 1: | 24 if len(name_pieces) > 1: |
24 self._test_name = name_pieces[1] | 25 self._test_name = name_pieces[1] |
25 self._class_name = name_pieces[0] | 26 self._class_name = name_pieces[0] |
26 else: | 27 else: |
27 self._class_name = full_name | 28 self._class_name = full_name |
28 self._test_name = full_name | 29 self._test_name = full_name |
29 self._start_date = start_date | 30 self._start_date = start_date |
30 self._dur = dur | |
31 | |
32 def GetDur(self): | |
33 """Get the test duration.""" | |
34 return self._dur | |
OLD | NEW |