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.

TooManyColumnsTestCase.java 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. /* $Id$ */
  18. package org.apache.fop.fo.flow.table;
  19. import org.junit.Test;
  20. public class TooManyColumnsTestCase extends ErrorCheckTest {
  21. public TooManyColumnsTestCase() throws Exception {
  22. super();
  23. }
  24. @Test
  25. public void testBody1() throws Exception {
  26. launchTest("table/too-many-columns_body_1.fo");
  27. }
  28. @Test
  29. public void testBody2() throws Exception {
  30. launchTest("table/too-many-columns_body_2.fo");
  31. }
  32. @Test
  33. public void testBody3() throws Exception {
  34. launchTest("table/too-many-columns_body_3.fo");
  35. }
  36. @Test
  37. public void testBody4() throws Exception {
  38. launchTest("table/too-many-columns_body_4.fo");
  39. }
  40. @Test
  41. public void testHeader() throws Exception {
  42. launchTest("table/too-many-columns_header.fo");
  43. }
  44. @Test
  45. public void testFooter() throws Exception {
  46. launchTest("table/too-many-columns_footer.fo");
  47. }
  48. }