diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2020-09-25 20:56:27 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2020-09-28 13:46:35 (GMT) |
commit | d6c051c126a8cba8adec39b6ae3ae09cc773633f (patch) | |
tree | b91277b250ce42dab4e5169f6eec9ee3f834c755 /Tests/CMakeGUI/CMakeGUITest.h | |
parent | 7cd95d99965bf59e2ba8e5cb2835fb9d5d1b3abe (diff) | |
download | CMake-d6c051c126a8cba8adec39b6ae3ae09cc773633f.zip CMake-d6c051c126a8cba8adec39b6ae3ae09cc773633f.tar.gz CMake-d6c051c126a8cba8adec39b6ae3ae09cc773633f.tar.bz2 |
Tests: Add some basic configure tests for the CMake GUI
Diffstat (limited to 'Tests/CMakeGUI/CMakeGUITest.h')
-rw-r--r-- | Tests/CMakeGUI/CMakeGUITest.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tests/CMakeGUI/CMakeGUITest.h b/Tests/CMakeGUI/CMakeGUITest.h index 55a885b..f39dcc1 100644 --- a/Tests/CMakeGUI/CMakeGUITest.h +++ b/Tests/CMakeGUI/CMakeGUITest.h @@ -15,7 +15,11 @@ public: private: CMakeSetupDialog* m_window = nullptr; + void tryConfigure(int expectedResult = 0, int timeout = 60000); + private slots: void sourceBinaryArgs(); void sourceBinaryArgs_data(); + void simpleConfigure(); + void simpleConfigure_data(); }; |