testMacosFWLib.cpp 705 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #include <QObject>
  2. #include <QString>
  3. #include "macos_fw_lib.h"
  4. #include "testMacosFWLib.h"
  5. class TestMacosFWLib : public QObject
  6. {
  7. Q_OBJECT
  8. private slots:
  9. void initTestCase();
  10. void cleanupTestCase();
  11. void init() {}
  12. void cleanup() {}
  13. void testQtVersion();
  14. };
  15. void TestMacosFWLib::initTestCase()
  16. {
  17. }
  18. void TestMacosFWLib::cleanupTestCase()
  19. {
  20. }
  21. void TestMacosFWLib::testQtVersion()
  22. {
  23. MacosFWLib* testLib = new MacosFWLib();
  24. QVERIFY(testLib->qtVersionString().contains("5."));
  25. testLib->deleteLater();
  26. }
  27. int main(int argc, char* argv[])
  28. {
  29. QApplication app(argc, argv, false);
  30. MacosFWLib testObject;
  31. return QTest::qExec(&testObject, argc, argv);
  32. }
  33. #include "testMacosFWLib.moc"