dogecoin/src/qt/test/bitcoinunitstests.h
Wladimir J. van der Laan 2b6486b229 qt: Add tests for bitcoin units parsing/formatting
Tests various locales, as well as variants with and without
decimals group separators.

(cherry picked from commit
laanwj/bitcoin@9ce31063b8,
bitcoin/bitcoin#3893)
2014-03-31 23:53:51 +02:00

17 lines
247 B
C++

#ifndef BITCOINUNITSTESTS_H
#define BITCOINUNITSTESTS_H
#include <QObject>
#include <QTest>
class BitcoinUnitsTests : public QObject
{
Q_OBJECT
private slots:
void formatTests();
void parseTests();
};
#endif // BITCOINUNITSTESTS_H