diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2020-09-14 18:48:07 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2020-09-23 18:10:40 (GMT) |
commit | 4c6e5cd0fae57684411d6bf814b4fcc4434c1f50 (patch) | |
tree | 64307ab060a02102e6861008fba72340ad2ba3ea /Tests/CMakeGUI/CMakeGUITest.h | |
parent | 41e223deb37767d9beb8c4462b8b8df88ba2dedf (diff) | |
download | CMake-4c6e5cd0fae57684411d6bf814b4fcc4434c1f50.zip CMake-4c6e5cd0fae57684411d6bf814b4fcc4434c1f50.tar.gz CMake-4c6e5cd0fae57684411d6bf814b4fcc4434c1f50.tar.bz2 |
Tests: Add some basic tests for CMake GUI
Diffstat (limited to 'Tests/CMakeGUI/CMakeGUITest.h')
-rw-r--r-- | Tests/CMakeGUI/CMakeGUITest.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Tests/CMakeGUI/CMakeGUITest.h b/Tests/CMakeGUI/CMakeGUITest.h new file mode 100644 index 0000000..55a885b --- /dev/null +++ b/Tests/CMakeGUI/CMakeGUITest.h @@ -0,0 +1,21 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#pragma once + +#include <QObject> + +class CMakeSetupDialog; + +class CMakeGUITest : public QObject +{ + Q_OBJECT +public: + CMakeGUITest(CMakeSetupDialog* window, QObject* parent = nullptr); + +private: + CMakeSetupDialog* m_window = nullptr; + +private slots: + void sourceBinaryArgs(); + void sourceBinaryArgs_data(); +}; |