mirror of
https://gitee.com/dromara/carbon.git
synced 2024-11-30 03:07:36 +08:00
31 lines
746 B
Go
Executable File
31 lines
746 B
Go
Executable File
package carbon
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestCarbon_FromStdTime(t *testing.T) {
|
|
loc, _ := time.LoadLocation("Asia/Shanghai")
|
|
tt := time.Now().In(loc)
|
|
expected := tt.Format(DateTimeLayout)
|
|
actual := FromStdTime(tt).ToDateTimeString()
|
|
assert.Equal(t, expected, actual)
|
|
}
|
|
|
|
func TestCarbon_Time2Carbon(t *testing.T) {
|
|
loc, _ := time.LoadLocation("Asia/Shanghai")
|
|
tt := time.Now().In(loc)
|
|
expected := tt.Format(DateTimeLayout)
|
|
actual := Time2Carbon(tt).ToDateTimeString()
|
|
assert.Equal(t, expected, actual)
|
|
}
|
|
|
|
func TestCarbon_Carbon2Time(t *testing.T) {
|
|
expected := time.Now().Format(DateTimeLayout)
|
|
actual := Now().Carbon2Time().Format(DateTimeLayout)
|
|
assert.Equal(t, expected, actual)
|
|
}
|