Versions in this module Expand all Collapse all v0 v0.2.0 Oct 14, 2024 Changes in this version + type Fixture struct + GameSessions []model.GameSession + Users []model.User + type FixtureBuilder struct + func New() *FixtureBuilder + func (b *FixtureBuilder) GameSession(v ...model.GameSession) *FixtureBuilder + func (b *FixtureBuilder) User(v ...model.User) *FixtureBuilder + func (b FixtureBuilder) Build() Fixture + type GameSessionBuilder struct + func NewGameSessionBuilder(t *testing.T, userID uuid.UUID, gameSessionID uuid.UUID) *GameSessionBuilder + func (b *GameSessionBuilder) FinishedAt(v time.Time) *GameSessionBuilder + func (b *GameSessionBuilder) StartedAt(v time.Time) *GameSessionBuilder + func (b GameSessionBuilder) Build() model.GameSession + type UserBuilder struct + func NewUserBuilder(id uuid.UUID) *UserBuilder + func (b UserBuilder) Build() model.User