2025-03-01 20:38:52 -05:00
|
|
|
#include <QtTest/QtTest>
|
|
|
|
|
|
|
|
|
|
class AutoTest_COD : public QObject {
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
private slots:
|
2025-04-04 20:34:24 -04:00
|
|
|
virtual void testDecompression() = 0;
|
2025-03-01 20:38:52 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Don't generate a main() function
|
|
|
|
|
#include "autotest_cod.moc"
|