package tables import ( "mazeratsgen/internal/dice" "testing" ) func TestCityTableGenMethods(t *testing.T) { roller := dice.NewRoller(1) table := CityTable{Roller: roller} table.CityTheme(roller.TableRoll()) table.CityEvent(roller.TableRoll()) table.DistrictTheme(roller.TableRoll()) table.UpperClassBuilding(roller.TableRoll()) table.LowerClassBuilding(roller.TableRoll()) table.CityActivity(roller.TableRoll()) table.BuildingRoom(roller.TableRoll()) table.TacticalStreetFeature(roller.TableRoll()) table.TacticalBuildingFeature(roller.TableRoll()) table.GenFaction(roller.TableRoll()) table.FactionTrait(roller.TableRoll()) table.FactionGoal(roller.TableRoll()) }