KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jdesktop > swing > data > AllDataModelTests


1 /*
2  * $Id: AllDataModelTests.java,v 1.2 2005/01/27 14:40:27 kleopatra Exp $
3  *
4  * Copyright 2004 Sun Microsystems, Inc., 4150 Network Circle,
5  * Santa Clara, California 95054, U.S.A. All rights reserved.
6  */

7 package org.jdesktop.swing.data;
8
9 import junit.framework.Test;
10 import junit.framework.TestSuite;
11
12
13 /**
14  * A collection of test suites for all DataModel tests
15  * (convenience for local testing).
16  *
17  * @author Jeanette Winzenburg
18  */

19 public class AllDataModelTests {
20     public static Test suite() {
21         TestSuite suite = new TestSuite("JUnit Tests - MetaDataProviders");
22         suite.addTest(new TestSuite(TableModelExtAdapterTest.class));
23         suite.addTest(new TestSuite(DefaultDataModelTest.class));
24         return suite;
25     }
26
27 }
28
Popular Tags