removed TestEuropeString
This commit is contained in:
parent
61d5335b56
commit
ffbdba585f
59
xls_test.go
59
xls_test.go
@ -3,7 +3,6 @@ package xls
|
||||
import (
|
||||
"fmt"
|
||||
"testing"
|
||||
"unicode/utf16"
|
||||
)
|
||||
|
||||
func TestOpen(t *testing.T) {
|
||||
@ -27,61 +26,3 @@ func TestOpen(t *testing.T) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestEuropeString(t *testing.T) {
|
||||
bts := []byte{66, 233, 114, 232}
|
||||
var bts1 = make([]uint16, 4)
|
||||
for k, v := range bts {
|
||||
bts1[k] = uint16(v)
|
||||
}
|
||||
runes := utf16.Decode(bts1)
|
||||
fmt.Println(string(runes))
|
||||
}
|
||||
|
||||
// func TestOpen1(t *testing.T) {
|
||||
// xlFile, _ := Open("000.xls", "")
|
||||
// for i := 0; i < xlFile.NumSheets(); i++ {
|
||||
// fmt.Println(xlFile.GetSheet(i).Name)
|
||||
// sheet := xlFile.GetSheet(i)
|
||||
// row := sheet.Row(1]
|
||||
// for i, col := range row.Cols {
|
||||
// fmt.Println(i, col.String(xlFile))
|
||||
// }
|
||||
// }
|
||||
// // sheet1 := xlFile.GetSheet(0)
|
||||
// // fmt.Println(sheet1.Name)
|
||||
// // fmt.Print(sheet1.Row()
|
||||
// // for k, row1 := range sheet1.Row({
|
||||
// // // row1 := sheet1.Row(1]
|
||||
// // fmt.Printf("\n[%d]", k)
|
||||
// // for _, col1 := range row1.Cols {
|
||||
// // // col1 := row1.Cols[0]
|
||||
// // fmt.Print(col1.LastCol())
|
||||
// // fmt.Print(" ")
|
||||
// // }
|
||||
// // }
|
||||
// }
|
||||
|
||||
// func TestBof(t *testing.T) {
|
||||
// b := new(bof)
|
||||
// b.Id = 0x41E
|
||||
// b.Size = 55
|
||||
// buf := bytes.NewReader([]byte{0x07, 0x00, 0x19, 0x00, 0x01, 0x22, 0x00, 0xE5, 0xFF, 0x22, 0x00, 0x23, 0x00, 0x2C, 0x00, 0x23, 0x00, 0x23, 0x00, 0x30, 0x00, 0x2E, 0x00, 0x30, 0x00, 0x30, 0x00, 0x3B, 0x00, 0x22, 0x00, 0xE5, 0xFF, 0x22, 0x00, 0x5C, 0x00, 0x2D, 0x00, 0x23, 0x00, 0x2C, 0x20, 0x00})
|
||||
// wb := new(WorkBook)
|
||||
// wb.Formats = make(map[uint16]*Format)
|
||||
// wb.parseBof(buf, b, b, 0)
|
||||
// }
|
||||
|
||||
// func TestMaxRow(t *testing.T) {
|
||||
// xlFile, err := Open("Table.xls", "utf-8")
|
||||
// if err != nil {
|
||||
// fmt.Fprintf(os.Stderr, "Failure: %v\n", err)
|
||||
// t.Error(err)
|
||||
// }
|
||||
|
||||
// if sheet1 := xlFile.GetSheet(0); sheet1 != nil {
|
||||
// if sheet1.MaxRow != 11 {
|
||||
// t.Errorf("max row is error,is %d instead of 11", sheet1.MaxRow)
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
Loading…
Reference in New Issue
Block a user