/excelize-debugging

my excelize debugging workspaces for VSCode

Primary LanguageGoBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

excelize debugging

help to reproduce excelize lib issue case

about VSCode multiple workspace

Before commit or create PR

run go test and coverage test yourself

# run golang coverage test
function runGoCoverageReport() {
  outFile="cover.out"
  if [ -n "$1" ]; then
    outFile="$1"
    echo "using param as outFile: $1"
  fi

  # should all pass
  go test

  # generate report file
  go test -coverprofile=$outFile
  # open report HTML
  go tool cover -html=$outFile
}