OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 #ifndef CHROME_TEST_UI_UI_TEST_H_ | 5 #ifndef CHROME_TEST_UI_UI_TEST_H_ |
6 #define CHROME_TEST_UI_UI_TEST_H_ | 6 #define CHROME_TEST_UI_UI_TEST_H_ |
7 | 7 |
8 // This file provides a common base for running UI unit tests, which operate | 8 // This file provides a common base for running UI unit tests, which operate |
9 // the entire browser application in a separate process for holistic | 9 // the entire browser application in a separate process for holistic |
10 // functional testing. | 10 // functional testing. |
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
549 | 549 |
550 scoped_ptr<AutomationProxy> server_; | 550 scoped_ptr<AutomationProxy> server_; |
551 | 551 |
552 MessageLoop message_loop_; // Enables PostTask to main thread. | 552 MessageLoop message_loop_; // Enables PostTask to main thread. |
553 | 553 |
554 int command_execution_timeout_ms_; | 554 int command_execution_timeout_ms_; |
555 int action_timeout_ms_; | 555 int action_timeout_ms_; |
556 int action_max_timeout_ms_; | 556 int action_max_timeout_ms_; |
557 int sleep_timeout_ms_; | 557 int sleep_timeout_ms_; |
558 int terminate_timeout_ms_; | 558 int terminate_timeout_ms_; |
| 559 int per_test_timeout_ms_; |
559 | 560 |
560 std::wstring ui_test_name_; | 561 std::wstring ui_test_name_; |
561 }; | 562 }; |
562 | 563 |
563 // These exist only to support the gTest assertion macros, and | 564 // These exist only to support the gTest assertion macros, and |
564 // shouldn't be used in normal program code. | 565 // shouldn't be used in normal program code. |
565 #ifdef UNIT_TEST | 566 #ifdef UNIT_TEST |
566 std::ostream& operator<<(std::ostream& out, const std::wstring& wstr); | 567 std::ostream& operator<<(std::ostream& out, const std::wstring& wstr); |
567 | 568 |
568 template<typename T> | 569 template<typename T> |
569 std::ostream& operator<<(std::ostream& out, const ::scoped_ptr<T>& ptr) { | 570 std::ostream& operator<<(std::ostream& out, const ::scoped_ptr<T>& ptr) { |
570 return out << ptr.get(); | 571 return out << ptr.get(); |
571 } | 572 } |
572 #endif // UNIT_TEST | 573 #endif // UNIT_TEST |
573 | 574 |
574 #endif // CHROME_TEST_UI_UI_TEST_H_ | 575 #endif // CHROME_TEST_UI_UI_TEST_H_ |
OLD | NEW |