diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2021-01-17 00:51:03 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2021-01-17 00:51:03 +0000 |
commit | 435b6a131e12396baf44537500ffb6bb7d21e482 (patch) | |
tree | 72ac0d30bca35a1fd507d2c5606fcfff42de4d2b /src | |
parent | 020f33a940112c44e570eb42cc78f9e6d5ffb7f4 (diff) | |
download | poi-435b6a131e12396baf44537500ffb6bb7d21e482.tar.gz poi-435b6a131e12396baf44537500ffb6bb7d21e482.zip |
Remove superfluous test
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1885586 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r-- | src/testcases/org/apache/poi/util/TestPOILogFactory.java | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/src/testcases/org/apache/poi/util/TestPOILogFactory.java b/src/testcases/org/apache/poi/util/TestPOILogFactory.java deleted file mode 100644 index 05553887d6..0000000000 --- a/src/testcases/org/apache/poi/util/TestPOILogFactory.java +++ /dev/null @@ -1,50 +0,0 @@ -/* ==================================================================== - 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.util; - -import org.junit.jupiter.api.Test; - -final class TestPOILogFactory { - - - /** - * test log creation - */ - @Test - void testLog() { - //NKB Testing only that logging classes use gives no exception - // Since logging can be disabled, no checking of logging - // output is done. - - POILogger l1 = POILogFactory.getLogger( "org.apache.poi.hssf.test" ); - POILogger l2 = POILogFactory.getLogger( "org.apache.poi.hdf.test" ); - - l1.log( POILogger.FATAL, "testing cat org.apache.poi.hssf.*:FATAL" ); - l1.log( POILogger.ERROR, "testing cat org.apache.poi.hssf.*:ERROR" ); - l1.log( POILogger.WARN, "testing cat org.apache.poi.hssf.*:WARN" ); - l1.log( POILogger.INFO, "testing cat org.apache.poi.hssf.*:INFO" ); - l1.log( POILogger.DEBUG, "testing cat org.apache.poi.hssf.*:DEBUG" ); - - l2.log( POILogger.FATAL, "testing cat org.apache.poi.hdf.*:FATAL" ); - l2.log( POILogger.ERROR, "testing cat org.apache.poi.hdf.*:ERROR" ); - l2.log( POILogger.WARN, "testing cat org.apache.poi.hdf.*:WARN" ); - l2.log( POILogger.INFO, "testing cat org.apache.poi.hdf.*:INFO" ); - l2.log( POILogger.DEBUG, "testing cat org.apache.poi.hdf.*:DEBUG" ); - - } -} |