Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

UtilityCodeTestSuite.java 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * Copyright 1999-2006 The Apache Software Foundation.
  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. /* $Id$ */
  17. package org.apache.fop;
  18. import org.apache.fop.traits.BorderPropsTestCase;
  19. import org.apache.fop.traits.TraitColorTestCase;
  20. import org.apache.fop.util.PDFNumberTestCase;
  21. import org.apache.fop.util.UnitConvTestCase;
  22. import junit.framework.Test;
  23. import junit.framework.TestSuite;
  24. /**
  25. * Test suite for FOP's utility classes.
  26. */
  27. public class UtilityCodeTestSuite {
  28. /**
  29. * Builds the test suite
  30. * @return the test suite
  31. */
  32. public static Test suite() {
  33. TestSuite suite = new TestSuite(
  34. "Test suite for FOP's utility classes");
  35. //$JUnit-BEGIN$
  36. suite.addTest(new TestSuite(PDFNumberTestCase.class));
  37. suite.addTest(new TestSuite(UnitConvTestCase.class));
  38. suite.addTest(new TestSuite(TraitColorTestCase.class));
  39. suite.addTest(new TestSuite(BorderPropsTestCase.class));
  40. //$JUnit-END$
  41. return suite;
  42. }
  43. }