first commit

This commit is contained in:
Your Name
2022-10-20 20:29:11 +08:00
commit 4d531f8044
3238 changed files with 1387862 additions and 0 deletions
@@ -0,0 +1,31 @@
/*
* SPDX-FileCopyrightText: (C) 2022 Lars Toenning <dev@ltoenning.de>
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef FLIGHTGEAR_TEST_SWIFTSERVICE_H
#define FLIGHTGEAR_TEST_SWIFTSERVICE_H
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>
class SwiftServiceTest : public CppUnit::TestFixture
{
// Set up the test suite.
CPPUNIT_TEST_SUITE(SwiftServiceTest);
CPPUNIT_TEST(testService);
CPPUNIT_TEST_SUITE_END();
public:
// Set up function for each test.
void setUp();
// Clean up after each test.
void tearDown();
// Test
void testService();
};
#endif //FLIGHTGEAR_TEST_SWIFTSERVICE_H