diff options
author | Josh Micich <josh@apache.org> | 2009-05-21 00:55:56 +0000 |
---|---|---|
committer | Josh Micich <josh@apache.org> | 2009-05-21 00:55:56 +0000 |
commit | 5c55b57964e59e8c19a9663f9f43b8a4e48d8c19 (patch) | |
tree | 6af96c55285aeef64eea936ca2f1b082f54f0c2e /src/ooxml/testcases/org/apache/poi/openxml4j/opc/compliance | |
parent | 95a7539c30cec7b75c7df117d732e42598cdc3cc (diff) | |
download | poi-5c55b57964e59e8c19a9663f9f43b8a4e48d8c19.tar.gz poi-5c55b57964e59e8c19a9663f9f43b8a4e48d8c19.zip |
Changed CRLF to LF in ooxml/testcases. Minor fixes for compiler warnings and formatting
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@776905 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/ooxml/testcases/org/apache/poi/openxml4j/opc/compliance')
-rwxr-xr-x | src/ooxml/testcases/org/apache/poi/openxml4j/opc/compliance/AllOpenXML4JComplianceTests.java | 66 |
1 files changed, 33 insertions, 33 deletions
diff --git a/src/ooxml/testcases/org/apache/poi/openxml4j/opc/compliance/AllOpenXML4JComplianceTests.java b/src/ooxml/testcases/org/apache/poi/openxml4j/opc/compliance/AllOpenXML4JComplianceTests.java index cd990ccf08..3139b9451e 100755 --- a/src/ooxml/testcases/org/apache/poi/openxml4j/opc/compliance/AllOpenXML4JComplianceTests.java +++ b/src/ooxml/testcases/org/apache/poi/openxml4j/opc/compliance/AllOpenXML4JComplianceTests.java @@ -1,33 +1,33 @@ -/* ====================================================================
- Licensed to the Apache Software Foundation (ASF) under one or more
- contributor license agreements. See the NOTICE file distributed with
- this work for additional information regarding copyright ownership.
- The ASF licenses this file to You under the Apache License, Version 2.0
- (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-==================================================================== */
-
-package org.apache.poi.openxml4j.opc.compliance;
-
-import junit.framework.Test;
-import junit.framework.TestSuite;
-
-public class AllOpenXML4JComplianceTests {
-
- public static Test suite() {
- TestSuite suite = new TestSuite(AllOpenXML4JComplianceTests.class.getName());
- suite.addTestSuite(TestOPCCompliancePartName.class);
- suite.addTestSuite(TestOPCComplianceCoreProperties.class);
- suite.addTestSuite(TestOPCCompliancePackageModel.class);
- return suite;
- }
-
-}
+/* ==================================================================== + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +==================================================================== */ + +package org.apache.poi.openxml4j.opc.compliance; + +import junit.framework.Test; +import junit.framework.TestSuite; + +public final class AllOpenXML4JComplianceTests { + + public static Test suite() { + TestSuite suite = new TestSuite(AllOpenXML4JComplianceTests.class.getName()); + suite.addTestSuite(TestOPCCompliancePartName.class); + suite.addTestSuite(TestOPCComplianceCoreProperties.class); + suite.addTestSuite(TestOPCCompliancePackageModel.class); + return suite; + } + +} |