Files
2022-02-08 11:05:47 +08:00

15 lines
308 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package service
import "testing"
func TestESAchievement_Create(t *testing.T) {
manage := NewESAchievement(
WithAchievementID(1),
WithAchievementTitle("测试一"),
WithAchievementIndustry("测试测试"),
WithAchievementKeyword("关键词1关键词2"),
)
err := manage.Create()
t.Log(err)
}