32 Star 403 Fork 63

GVPdromara/carbon

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
default_unit_test.go 424 Bytes
一键复制 编辑 原始数据 按行查看 历史
gouguoyin 提交于 2024-01-12 10:57 . v2.3.5
package carbon
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestCarbon_SetDefault(t *testing.T) {
SetDefault(Default{
Layout: DateTimeLayout,
Timezone: Local,
Locale: "en",
WeekStartsAt: Sunday,
})
assert.Equal(t, DateTimeLayout, defaultLayout)
assert.Equal(t, Local, defaultTimezone)
assert.Equal(t, "en", defaultLocale)
assert.Equal(t, "Sunday", defaultWeekStartsAt)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/dromara/carbon.git
[email protected]:dromara/carbon.git
dromara
carbon
carbon
master

搜索帮助