OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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 """Unittests for SurfaceStatsCollector.""" | 5 """Unittests for SurfaceStatsCollector.""" |
6 | 6 |
7 import unittest | 7 import unittest |
8 | 8 |
9 from surface_stats_collector import SurfaceStatsCollector | 9 from .surface_stats_collector import SurfaceStatsCollector |
10 | 10 |
11 class TestSurfaceStatsCollector(unittest.TestCase): | 11 class TestSurfaceStatsCollector(unittest.TestCase): |
12 @staticmethod | 12 @staticmethod |
13 def _CreateUniformTimestamps(base, num, delta): | 13 def _CreateUniformTimestamps(base, num, delta): |
14 return [base + i * delta for i in range(1, num + 1)] | 14 return [base + i * delta for i in range(1, num + 1)] |
15 | 15 |
16 @staticmethod | 16 @staticmethod |
17 def _CreateDictionaryFromResults(results): | 17 def _CreateDictionaryFromResults(results): |
18 dictionary = {} | 18 dictionary = {} |
19 for result in results: | 19 for result in results: |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 | 53 |
54 results = self._CreateDictionaryFromResults( | 54 results = self._CreateDictionaryFromResults( |
55 SurfaceStatsCollector._CalculateResults( | 55 SurfaceStatsCollector._CalculateResults( |
56 self.refresh_period, timestamps, '')) | 56 self.refresh_period, timestamps, '')) |
57 | 57 |
58 self.assertEquals(len(results['frame_lengths'].value), 9) | 58 self.assertEquals(len(results['frame_lengths'].value), 9) |
59 | 59 |
60 | 60 |
61 if __name__ == '__main__': | 61 if __name__ == '__main__': |
62 unittest.main() | 62 unittest.main() |
OLD | NEW |