22 lines
486 B
Go
22 lines
486 B
Go
package bbxt
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func Test_StatisOursProductLossSumApiTotal(t *testing.T) {
|
|
o, err := NewBbxtTools()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
today := time.Now()
|
|
err = o.StatisOursProductLossSumTotal([]string{
|
|
time.Date(today.Year(), today.Month(), today.Day(), 0, 0, 0, 0, today.Location()).Format("2006-01-02 15:04:05"),
|
|
time.Date(today.Year(), today.Month(), today.Day(), 23, 59, 59, 0, today.Location()).Format("2006-01-02 15:04:05"),
|
|
})
|
|
|
|
t.Log(err)
|
|
|
|
}
|