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

https://github.com/MIPS/libcore · Java · 44 lines · 18 code · 6 blank · 20 comment · 0 complexity · a7aa16883f62e8b0a4a3a3f928af8afc 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 Test suite() {
  24. TestSuite suite = new TestSuite("All tests for package tests.java.sql;");
  25. // $JUnit-BEGIN$
  26. suite.addTestSuite(MultiThreadAccessTest.class);
  27. suite.addTestSuite(tests.java.sql.StressTest.class);
  28. suite.addTestSuite(tests.java.sql.UpdateFunctionalityTest.class);
  29. suite.addTestSuite(tests.java.sql.SelectFunctionalityTest.class);
  30. suite.addTestSuite(tests.java.sql.UpdateFunctionalityTest2.class);
  31. suite.addTestSuite(tests.java.sql.DeleteFunctionalityTest.class);
  32. suite.addTestSuite(tests.java.sql.DatabaseMetaDataTest.class);
  33. suite.addTestSuite(tests.java.sql.DatabaseMetaDataNotSupportedTest.class);
  34. suite.addTestSuite(tests.java.sql.InsertFunctionalityTest.class);
  35. // $JUnit-END$
  36. return suite;
  37. }
  38. }