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

0001 /*  
0002     SPDX-FileCopyrightText: 2023 Hy Murveit <hy@murveit.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 
0006     Test for rectangleoverlap.cpp
0007 */
0008 
0009 #pragma once
0010 
0011 #include <QObject>
0012 
0013 class TestRectangleOverlap: public QObject
0014 {
0015     Q_OBJECT
0016 public:
0017     explicit TestRectangleOverlap(QObject * parent = nullptr);
0018 
0019 private slots:
0020     void testBasic_data();
0021     void testBasic();
0022 };
0023 
0024