Files
user-system/internal/domain/social_account_test.go

11 lines
227 B
Go

package domain
import "testing"
func TestSocialAccountTableName(t *testing.T) {
var account SocialAccount
if account.TableName() != "user_social_accounts" {
t.Fatalf("unexpected table name: %s", account.TableName())
}
}