-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
kadai3-1-micchie #24
base: master
Are you sure you want to change the base?
kadai3-1-micchie #24
Conversation
|
||
// Game はtタイピングゲームのコンテキストや入出力などの情報を格納します. | ||
type Game struct { | ||
Context context.Context |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
コンテキストはフィールドに入れない
scan <- scanner.Text() | ||
} | ||
if err := scanner.Err(); err != nil { | ||
fmt.Fprintln(os.Stderr, "input:", err) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
errgroupを使ったほうが良さそう
|
||
switch { | ||
case g.Score.Count == len(g.Words): | ||
fmt.Fprintln(g.Output, fmt.Sprintf( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fprintfを使う
) | ||
|
||
func TestGame_Run(t *testing.T) { | ||
g := &game.Game{} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
これで良さそう
g := &game.Game{
TimeLimit: 5 * time.Second,
Words: []string{
// 略
},
}
"bear", | ||
} | ||
|
||
ch := make(chan string) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
チャネルを受信する側は?
time.Sleep(2 * time.Second) | ||
ch <- "beer" | ||
}() | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ブロックされていないので何も起きずにテストが終了する
|
||
// Config is a structure of config.yml. | ||
var Config = struct { | ||
Limit time.Duration `default:"30"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
time.Duration
型はすでに時間単位を型情報として持っているので、30
は30
秒という意味にはできない。
time.Duration
型で30
は30ナノ秒を表す。
https://golang.org/pkg/time/#pkg-constants
} | ||
|
||
func shuffle(list []string) { | ||
rand.Seed(time.Now().UnixNano()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
乱数の種の設定はプログラムで1回やれば十分。
通常は関数呼び出しごとにはやらずに、初期化だけ行う。
g.Run() | ||
} | ||
|
||
func shuffle(list []string) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rand.Permを使えば良さそう。
Overview
Command
Description
config.yml に制限時間と, 出力する英単語を登録して実行をします。
つぶやき