| 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 reraiser_thread.py.""" | 5 """Unittests for reraiser_thread.py.""" |
| 6 | 6 |
| 7 import threading | 7 import threading |
| 8 import unittest | 8 import unittest |
| 9 | 9 |
| 10 from pylib.utils import reraiser_thread | 10 from devil.utils import reraiser_thread |
| 11 from pylib.utils import watchdog_timer | 11 from devil.utils import watchdog_timer |
| 12 | 12 |
| 13 | 13 |
| 14 class TestException(Exception): | 14 class TestException(Exception): |
| 15 pass | 15 pass |
| 16 | 16 |
| 17 | 17 |
| 18 class TestReraiserThread(unittest.TestCase): | 18 class TestReraiserThread(unittest.TestCase): |
| 19 """Tests for reraiser_thread.ReraiserThread.""" | 19 """Tests for reraiser_thread.ReraiserThread.""" |
| 20 def testNominal(self): | 20 def testNominal(self): |
| 21 result = [None, None] | 21 result = [None, None] |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 results = reraiser_thread.RunAsync([lambda:1]) | 102 results = reraiser_thread.RunAsync([lambda:1]) |
| 103 self.assertEqual([1], results) | 103 self.assertEqual([1], results) |
| 104 | 104 |
| 105 def testTwoArgs(self): | 105 def testTwoArgs(self): |
| 106 a, b = reraiser_thread.RunAsync((lambda:1, lambda:2)) | 106 a, b = reraiser_thread.RunAsync((lambda:1, lambda:2)) |
| 107 self.assertEqual(1, a) | 107 self.assertEqual(1, a) |
| 108 self.assertEqual(2, b) | 108 self.assertEqual(2, b) |
| 109 | 109 |
| 110 if __name__ == '__main__': | 110 if __name__ == '__main__': |
| 111 unittest.main() | 111 unittest.main() |
| OLD | NEW |