File indexing completed on 2024-05-19 04:34:07

0001 /***************************************************************************
0002  *                                                                         *
0003  *   copyright : (C) 2007 The University of Toronto                        *
0004  *                                                                         *
0005  *   This program is free software; you can redistribute it and/or modify  *
0006  *   it under the terms of the GNU General Public License as published by  *
0007  *   the Free Software Foundation; either version 2 of the License, or     *
0008  *   (at your option) any later version.                                   *
0009  *                                                                         *
0010  ***************************************************************************/
0011 
0012 #ifndef TESTDATASOURCE_H
0013 #define TESTDATASOURCE_H
0014 
0015 #include <QObject>
0016 #include <QStringList>
0017 
0018 class TestDataSource : public QObject
0019 {
0020   Q_OBJECT
0021   private Q_SLOTS:
0022     void initTestCase();
0023     void cleanupTestCase();
0024 
0025     void testAscii();
0026     void testDirfile();
0027     void testCDF();
0028     void testFrame();
0029     void testIndirect();
0030     void testLFI();
0031     void testPlanck();
0032     void testStdin();
0033     void testQImageSource();
0034     void testFITSImage();
0035 
0036   private:
0037     QStringList _plugins;
0038 };
0039 
0040 #endif
0041 
0042 // vim: ts=2 sw=2 et