aboutsummaryrefslogtreecommitdiffstats
path: root/src/ooxml/testcases/org/apache/poi/xssf/streaming/TestSXSSFEvaluationSheet.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/ooxml/testcases/org/apache/poi/xssf/streaming/TestSXSSFEvaluationSheet.java')
-rw-r--r--src/ooxml/testcases/org/apache/poi/xssf/streaming/TestSXSSFEvaluationSheet.java49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/ooxml/testcases/org/apache/poi/xssf/streaming/TestSXSSFEvaluationSheet.java b/src/ooxml/testcases/org/apache/poi/xssf/streaming/TestSXSSFEvaluationSheet.java
deleted file mode 100644
index 3600479f31..0000000000
--- a/src/ooxml/testcases/org/apache/poi/xssf/streaming/TestSXSSFEvaluationSheet.java
+++ /dev/null
@@ -1,49 +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.xssf.streaming;
-
-import org.apache.poi.ss.formula.EvaluationSheet;
-import org.apache.poi.ss.usermodel.BaseTestXEvaluationSheet;
-import org.apache.poi.ss.usermodel.Sheet;
-import org.apache.poi.ss.usermodel.Workbook;
-import org.junit.jupiter.api.AfterEach;
-
-import java.io.IOException;
-import java.util.AbstractMap;
-import java.util.ArrayList;
-import java.util.List;
-import java.util.Map;
-
-class TestSXSSFEvaluationSheet extends BaseTestXEvaluationSheet {
- private List<Workbook> workbooksToClose = new ArrayList<>();
-
- @AfterEach
- void closeWorkbooks() throws IOException {
- for (Workbook workbook : workbooksToClose) {
- workbook.close();
- }
- }
-
- @Override
- protected Map.Entry<Sheet, EvaluationSheet> getInstance() {
- SXSSFWorkbook workbook = new SXSSFWorkbook();
- workbooksToClose.add(workbook);
-
- SXSSFSheet sheet = workbook.createSheet();
- return new AbstractMap.SimpleEntry<>(sheet, new SXSSFEvaluationSheet(sheet));
- }
-}