SoXX
07b69f6c18
Some checks failed
Gitea Build Check / Build (push) Failing after 1m15s
Signed-off-by: SoXX <soxx@fenpa.ws>
35 lines
659 B
Go
35 lines
659 B
Go
package models
|
|
|
|
import "testing"
|
|
|
|
func TestUser_TableName(t *testing.T) {
|
|
type fields struct {
|
|
BaseModel BaseModel[AnthroveUserID]
|
|
Favorites []UserFavorites
|
|
Sources []UserSource
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
fields fields
|
|
want string
|
|
}{
|
|
{
|
|
name: "Test 1: Is name User",
|
|
fields: fields{},
|
|
want: "User",
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
us := User{
|
|
BaseModel: tt.fields.BaseModel,
|
|
Favorites: tt.fields.Favorites,
|
|
Sources: tt.fields.Sources,
|
|
}
|
|
if got := us.TableName(); got != tt.want {
|
|
t.Errorf("TableName() = %v, want %v", got, tt.want)
|
|
}
|
|
})
|
|
}
|
|
}
|