You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 line
301B

  1. package main
  2. import (
  3. log "github.com/sirupsen/logrus"
  4. "testing"
  5. )
  6. func TestDecodePayInMain(t *testing.T) {
  7. fileName := "./uploads/30.uploads"
  8. fileName = "/home/sp/go/src/SFM_Loan_RestApi/uploads/30.uploads"
  9. data, _ := decodePayInMain(fileName, "application/vnd.ms-excel")
  10. log.Println(data)
  11. }