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

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 "testfov.h"
0008 
0009 TestFOV::TestFOV(QObject *parent) : QObject(parent)
0010 {
0011 }
0012 
0013 void TestFOV::initTestCase()
0014 {
0015 }
0016 
0017 void TestFOV::cleanupTestCase()
0018 {
0019 }
0020 
0021 void TestFOV::init()
0022 {
0023 }
0024 
0025 void TestFOV::cleanup()
0026 {
0027 }
0028 
0029 void TestFOV::testFOVCreation()
0030 {
0031     QSKIP("Not implemented yet.");
0032 }
0033 
0034 QTEST_GUILESS_MAIN(TestFOV)