1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
// Copyright © 2011 Martin Ueding <dev@martin-ueding.de>
/*
* This file is part of jscribble.
*
* jscribble is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
* Software Foundation, either version 2 of the License, or (at your option)
* any later version.
*
* jscribble is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* jscribble. If not, see <http://www.gnu.org/licenses/>.
*/
package tests;
import junit.framework.Test;
import junit.framework.TestSuite;
import tests.jscribble.VersionNameTest;
import tests.jscribble.drawPanel.HelpItemTest;
import tests.jscribble.helpers.FileComparatorTest;
import tests.jscribble.notebook.NoteBookCompressorTest;
import tests.jscribble.notebook.NoteSheetFileFilterTest;
import tests.jscribble.notebook.NoteSheetTest;
import tests.jscribble.notebook.WriteoutThreadTest;
public class JscribbleTestSuite {
public static Test suite() {
TestSuite suite = new TestSuite();
// TODO Add test for BufferedImageWrapper.
// TODO Add test for InvalidationThread.
// TODO Add test for Localizer.
// TODO Add test for Logger.
// TODO Add test for SettingsWrapper.
suite.addTestSuite(FileComparatorTest.class);
suite.addTestSuite(HelpItemTest.class);
suite.addTestSuite(NoteBookCompressorTest.class);
suite.addTestSuite(NoteSheetFileFilterTest.class);
suite.addTestSuite(NoteSheetTest.class);
suite.addTestSuite(VersionNameTest.class);
suite.addTestSuite(WriteoutThreadTest.class);
return suite;
}
}
|