/* This file is part of the KDE libraries SPDX-FileCopyrightText: 2012-2018 Dominik Haumann SPDX-License-Identifier: LGPL-2.0-or-later */ #ifndef KATE_BUG_313769_TEST_H #define KATE_BUG_313769_TEST_H #include class BugTest : public QObject { Q_OBJECT public: BugTest(); ~BugTest() override; private Q_SLOTS: void initTestCase(); void cleanupTestCase(); void tryCrash(); }; #endif