/sql/src/test/java/tests/java/sql/AllTests.java

https://bitbucket.org/cyanogenmod/android_libcore · Java · 49 lines · 21 code · 8 blank · 20 comment · 0 complexity · 1a4c1cbf56d968a7296819d66249ebdc MD5 · raw file

  1. /*
  2. * Copyright (C) 2007 The Android Open Source Project
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package tests.java.sql;
  17. import junit.framework.Test;
  18. import junit.framework.TestSuite;
  19. /**
  20. * This is autogenerated source file. Includes tests for package tests.java.sql;
  21. */
  22. public class AllTests {
  23. public static void main(String[] args) {
  24. junit.textui.TestRunner.run(AllTests.suite());
  25. }
  26. public static Test suite() {
  27. TestSuite suite = tests.TestSuiteFactory.createTestSuite("All tests for package tests.java.sql;");
  28. // $JUnit-BEGIN$
  29. suite.addTestSuite(MultiThreadAccessTest.class);
  30. suite.addTestSuite(tests.java.sql.StressTest.class);
  31. suite.addTestSuite(tests.java.sql.UpdateFunctionalityTest.class);
  32. suite.addTestSuite(tests.java.sql.SelectFunctionalityTest.class);
  33. suite.addTestSuite(tests.java.sql.UpdateFunctionalityTest2.class);
  34. suite.addTestSuite(tests.java.sql.DeleteFunctionalityTest.class);
  35. suite.addTestSuite(tests.java.sql.DatabaseMetaDataTest.class);
  36. suite.addTestSuite(tests.java.sql.DatabaseMetaDataNotSupportedTest.class);
  37. suite.addTestSuite(tests.java.sql.InsertFunctionalityTest.class);
  38. // $JUnit-END$
  39. return suite;
  40. }
  41. }