package room import "testing" func TestRandomName(t *testing.T) { s := RandomName() if s == "" { t.Error("Expected string, got nil", s) } }