Skip to content

Java 11 settings

Java 11 settings #41

GitHub Actions / Test Results succeeded Dec 7, 2023 in 0s

All 76 tests pass in 0s

76 tests  ±0   76 ✔️ ±0   0s ⏱️ ±0s
11 suites ±0     0 💤 ±0 
11 files   ±0     0 ±0 

Results for commit d304500. ± Comparison against earlier commit e4dfca7.

Annotations

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

76 tests found

There are 76 tests, see "Raw output" for the full list of tests.
Raw output
com.inet.excel.ExcelCallableStatementTest ‑ constructor_throws_exception_if_parser_is_null()
com.inet.excel.ExcelCallableStatementTest ‑ constructor_throws_exception_if_sheetName_is_null()
com.inet.excel.ExcelConnectionTest ‑ constructor_throws_exception_if_parser_is_null()
com.inet.excel.ExcelDatabaseMetaDataTest ‑ constructor_throws_exception_if_parser_is_null()
com.inet.excel.ExcelDatabaseMetaDataTest ‑ getProcedureColumns_returns_information_about_columns_from_all_sheets()
com.inet.excel.ExcelDatabaseMetaDataTest ‑ getProcedureColumns_returns_information_about_columns_from_specified_sheet()
com.inet.excel.ExcelDatabaseMetaDataTest ‑ getProcedures_returns_information_about_procedures_representing_all_sheets_from_excel_document()
com.inet.excel.ExcelDatabaseResultSetTest ‑ constructor_should_accept_empty_lists_as_columnNames_and_rows()
com.inet.excel.ExcelDatabaseResultSetTest ‑ constructor_throws_exception_if_columnNames_are_null()
com.inet.excel.ExcelDatabaseResultSetTest ‑ constructor_throws_exception_if_number_of_values_in_all_rows_does_not_match_number_of_columns()
com.inet.excel.ExcelDatabaseResultSetTest ‑ constructor_throws_exception_if_rows_are_null()
com.inet.excel.ExcelDriverTest ‑ acceptsURL_returns_false_if_url_does_not_start_with_expected_prefix()
com.inet.excel.ExcelDriverTest ‑ acceptsURL_returns_true_if_url_starts_with_expected_prefix()
com.inet.excel.ExcelDriverTest ‑ acceptsURL_throws_exception_if_url_is_null()
com.inet.excel.ExcelDriverTest ‑ connect_returns_connection_to_specified_existing_file()
com.inet.excel.ExcelDriverTest ‑ connect_returns_null_if_url_does_not_start_with_expected_prefix()
com.inet.excel.ExcelDriverTest ‑ connect_throws_exception_if_path_to_excel_file_does_not_represent_existing_file()
com.inet.excel.ExcelDriverTest ‑ connect_throws_exception_if_path_to_excel_file_is_not_specified_in_url()
com.inet.excel.ExcelDriverTest ‑ connect_throws_exception_if_url_is_null()
com.inet.excel.ExcelDriverTest ‑ getMajorVersion_should_return_current_major_version()
com.inet.excel.ExcelDriverTest ‑ getMinorVersion_should_return_current_minor_version()
com.inet.excel.ExcelDriverTest ‑ jdbcCompliant_returns_false()
com.inet.excel.ExcelSheetResultSetMetaDataTest ‑ constructor_should_accept_empty_list_as_columnNames_and_columnTypes()
com.inet.excel.ExcelSheetResultSetMetaDataTest ‑ constructor_throws_exception_if_columnNames_are_null()
com.inet.excel.ExcelSheetResultSetMetaDataTest ‑ constructor_throws_exception_if_columnTypes_are_null()
com.inet.excel.ExcelSheetResultSetMetaDataTest ‑ constructor_throws_exception_if_fileName_is_null()
com.inet.excel.ExcelSheetResultSetMetaDataTest ‑ constructor_throws_exception_if_sheetName_is_null()
com.inet.excel.ExcelSheetResultSetTest ‑ constructor_throws_exception_if_maxRowsPerBatch_is_not_greater_than_zero()
com.inet.excel.ExcelSheetResultSetTest ‑ constructor_throws_exception_if_parser_is_null()
com.inet.excel.ExcelSheetResultSetTest ‑ constructor_throws_exception_if_sheetName_is_null()
com.inet.excel.parser.ExcelParserTest ‑ constructor_throws_exception_if_filePath_is_null()
com.inet.excel.parser.ExcelParserTest ‑ getColumnNames_returns_autogenerated_name_of_single_column_when_sheet_is_empty()
com.inet.excel.parser.ExcelParserTest ‑ getColumnNames_returns_autogenerated_name_of_single_column_when_sheet_is_empty_even_if_sheet_dimensions_are_missing()
com.inet.excel.parser.ExcelParserTest ‑ getColumnNames_returns_autogenerated_names_of_columns_if_first_row_is_not_specified_as_header()
com.inet.excel.parser.ExcelParserTest ‑ getColumnNames_returns_autogenerated_names_of_columns_if_first_row_which_is_specified_as_header_is_empty()
com.inet.excel.parser.ExcelParserTest ‑ getColumnNames_returns_names_of_columns_based_on_first_row_which_is_specified_as_header()
com.inet.excel.parser.ExcelParserTest ‑ getColumnNames_returns_names_of_columns_even_if_sheet_dimensions_and_row_spans_are_missing()
com.inet.excel.parser.ExcelParserTest ‑ getColumnNames_returns_names_of_columns_even_if_sheet_dimensions_are_missing()
com.inet.excel.parser.ExcelParserTest ‑ getColumnNames_returns_names_of_columns_even_if_sheet_dimensions_are_missing_and_row_spans_are_incomplete()
com.inet.excel.parser.ExcelParserTest ‑ getColumnNames_throws_exception_if_excel_file_does_not_exist()
com.inet.excel.parser.ExcelParserTest ‑ getColumnNames_throws_exception_if_sheet_is_null()
com.inet.excel.parser.ExcelParserTest ‑ getColumnNames_throws_exception_if_workbook_does_not_include_specified_sheet()
com.inet.excel.parser.ExcelParserTest ‑ getColumnTypes_returns_value_types_for_columns_from_specified_sheet()
com.inet.excel.parser.ExcelParserTest ‑ getColumnTypes_throws_exception_if_excel_file_does_not_exist()
com.inet.excel.parser.ExcelParserTest ‑ getColumnTypes_throws_exception_if_sheet_is_null()
com.inet.excel.parser.ExcelParserTest ‑ getColumnTypes_throws_exception_if_workbook_does_not_include_specified_sheet()
com.inet.excel.parser.ExcelParserTest ‑ getFileName_returns_name_taken_from_filePath()
com.inet.excel.parser.ExcelParserTest ‑ getRowCount_returns_number_of_rows_included_in_specified_sheet()
com.inet.excel.parser.ExcelParserTest ‑ getRowCount_throws_exception_if_excel_file_does_not_exist()
com.inet.excel.parser.ExcelParserTest ‑ getRowCount_throws_exception_if_sheet_is_null()
com.inet.excel.parser.ExcelParserTest ‑ getRowCount_throws_exception_if_workbook_does_not_include_specified_sheet()
com.inet.excel.parser.ExcelParserTest ‑ getRows_returns_data_from_specified_rows_of_document_with_header_row()
com.inet.excel.parser.ExcelParserTest ‑ getRows_returns_data_from_specified_rows_of_document_without_header_row()
com.inet.excel.parser.ExcelParserTest ‑ getRows_returns_data_of_various_types()
com.inet.excel.parser.ExcelParserTest ‑ getRows_throws_exception_if_excel_file_does_not_exist()
com.inet.excel.parser.ExcelParserTest ‑ getRows_throws_exception_if_sheet_is_null()
com.inet.excel.parser.ExcelParserTest ‑ getRows_throws_exception_if_specified_column_indexes_are_invalid()
com.inet.excel.parser.ExcelParserTest ‑ getRows_throws_exception_if_workbook_does_not_include_specified_sheet()
com.inet.excel.parser.ExcelParserTest ‑ getSheetNames_returns_sheet_names_ordered_by_occurrence_in_workbook()
com.inet.excel.parser.ExcelParserTest ‑ getSheetNames_throws_exception_if_excel_file_does_not_exist()
com.inet.excel.parser.ExcelParserTest ‑ values_representing_date_or_time_are_provided_as_instances_of_time_or_date_or_timestamp()
com.inet.excel.parser.ExcelParserTest ‑ values_representing_numbers_are_provided_as_instances_of_double()
com.inet.excel.parser.FormatCodeAnalyzerTest ‑ date()
com.inet.excel.parser.FormatCodeAnalyzerTest ‑ time()
com.inet.excel.parser.FormatCodeAnalyzerTest ‑ timestamp()
com.inet.excel.parser.FormatCodeAnalyzerTest ‑ varchar()
com.inet.excel.parser.RowSpanDataTest ‑ fresh_instance_is_empty()
com.inet.excel.parser.RowSpanDataTest ‑ information_about_single_cell_constitutes_valid_row_span()
com.inet.excel.parser.RowSpanDataTest ‑ instance_ignores_span_and_cell_information_which_are_invalid()
com.inet.excel.parser.RowSpanDataTest ‑ instance_updates_indexes_based_on_collected_span_and_cell_information()
com.inet.excel.parser.SheetDimensionTest ‑ constructor_creates_instance_if_specified_column_indexes_are_valid()
com.inet.excel.parser.SheetDimensionTest ‑ constructor_throws_exception_if_specified_column_indexes_are_invalid()
com.inet.excel.parser.SheetDimensionTest ‑ getColumnIndexFromCellRef_returns_column_index_from_valid_cell_ref()
com.inet.excel.parser.SheetDimensionTest ‑ getColumnIndexFromCellRef_returns_zero_if_cell_ref_is_invalid()
com.inet.excel.parser.SheetDimensionTest ‑ parse_creates_instance_based_on_dimension_ref()
com.inet.excel.parser.SheetDimensionTest ‑ parse_returns_null_if_dimension_ref_is_invalid()