Skip to content

Commit

Permalink
add excel testTable
Browse files Browse the repository at this point in the history
  • Loading branch information
HLWeil committed Oct 13, 2023
1 parent eedf32f commit cfdb888
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions tests/FsSpreadsheet.ExcelIO.Tests/TestObjects.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,36 @@

open FsSpreadsheet

module CrossIOTests =

let testFolder = "TestFiles"

let excelFileName = "TestWorkbook_Excel.xlsx"
let libreFileName = "TestWorkbook_Libre.xlsx"
let exceljsFileName = "TestWorkbook_ExcelJS.xlsx"
let closesXMLFileName = "TestWorkbook_ClosedXML.xlsx"
let FsSpreadsheetFileName = "TestWorkbook_FsSpreadsheet.xlsx"

module Sheet1 =

[<Literal>]
let sheetName = "WithTable"
[<Literal>]
let tableName = "MyTable"

module Sheet2 =

[<Literal>]
let sheetName = "Tableless"

module Sheet3 =

[<Literal>]
let sheetName = "WithTable_Duplicate"
[<Literal>]
let tableName = "MyOtherTable"


let sheet1Name = "MySheet1"
let sheet2Name = "MySheet2"

Expand Down
Binary file added tests/TestFiles/TestWorkbook_Excel.xlsx
Binary file not shown.

0 comments on commit cfdb888

Please sign in to comment.