File indexing completed on 2024-04-28 15:11:56

0001 /*  KStars class tests
0002     SPDX-FileCopyrightText: 2020 Eric Dejouhanet <eric.dejouhanet@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #include "testbinhelper.h"
0008 
0009 TestBinHelper::TestBinHelper(QObject *parent) : QObject(parent)
0010 {
0011 }
0012 
0013 void TestBinHelper::initTestCase()
0014 {
0015 }
0016 
0017 void TestBinHelper::cleanupTestCase()
0018 {
0019 }
0020 
0021 void TestBinHelper::init()
0022 {
0023 }
0024 
0025 void TestBinHelper::cleanup()
0026 {
0027 }
0028 
0029 void TestBinHelper::testLoadBinary_data()
0030 {
0031 }
0032 
0033 void TestBinHelper::testLoadBinary()
0034 {
0035     QSKIP("Not implemented yet.");
0036 }
0037 
0038 QTEST_GUILESS_MAIN(TestBinHelper)