mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-18 11:57:37 -05:00
26 lines
568 B
C
26 lines
568 B
C
![]() |
// Copyright (c) 2019 The Bitcoin Core developers
|
||
|
// Distributed under the MIT software license, see the accompanying
|
||
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||
|
|
||
|
#ifndef BITCOIN_QT_TEST_OPTIONTESTS_H
|
||
|
#define BITCOIN_QT_TEST_OPTIONTESTS_H
|
||
|
|
||
|
#include <qt/optionsmodel.h>
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class OptionTests : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit OptionTests(interfaces::Node& node) : m_node(node) {}
|
||
|
|
||
|
private Q_SLOTS:
|
||
|
void optionTests();
|
||
|
|
||
|
private:
|
||
|
interfaces::Node& m_node;
|
||
|
};
|
||
|
|
||
|
#endif // BITCOIN_QT_TEST_OPTIONTESTS_H
|