xca/lib/test_asn1int.cpp
Christian Hohnstaedt 80416fb0b0 Split basic functions
Extract all functions that only depend on Openssl and QtCore
2023-10-12 23:58:00 +02:00

26 lines
370 B
C++

/* vi: set sw=4 ts=4:
*
* Copyright (C) 2023 Christian Hohnstaedt.
*
* All rights reserved.
*/
#include <QTest>
class test_asn1int: public QObject
{
Q_OBJECT
private slots:
void toUpper();
};
void test_asn1int::toUpper()
{
QString str = "Hello";
QCOMPARE(str.toUpper(), QString("HELLO"));
}
QTEST_MAIN(test_asn1int)
#include "test_asn1int.moc"