Skip to content
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

Kadai2 sminamot #30

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

Conversation

sminamot
Copy link

io.Readerとio.Writerについて調べてみよう

  • 標準パッケージでどのように使われているか
    • 標準入出力
    • ファイル入出力
    • インターネットの送受信
    • バッファ読み書き
  • io.Readerとio.Writerがあることでどういう利点があるのか具体例を挙げて考えてみる
    • データの読み込み元または書き込み先が多様化しても同一のIFで扱うことができる
    • 独自でio.Reader/io.Writerを満たす関数等を作成するだけで、標準ライブラリにあるio.Reader/io.Writerをラップしたツール等を利用することができる

1回目の宿題のテストを作ってみて下さい

  • テストのしやすさを考えてリファクタリングしてみる
  • テストのカバレッジを取ってみる
  • テーブル駆動テストを行う
  • テストヘルパーを作ってみる

@tenntenn tenntenn added the kadai2 課題2 label Nov 19, 2018
return (e == "jpg" || e == "png" || e == "gif")
}

func filename(f, src, dst string) string {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

この関数名で拡張子を変更されると戸惑うのでもう少し別の名前をつけてやってください
内部実装を見れば何をしているかはわかりますが、 filename という関数名だけを見ると foo/bar.png を渡すと拡張子を除いた文字列が返ってくるようなものというイメージを受けます。

}

func TestNew(t *testing.T) {
tests := []testNewStruct{
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ここだけ struct の型を定義をしたのはなぜでしょう?
他のテストと共通化するぞ!という使い方をしないとあまりメリットがなさそうな感じです。

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

あと testNewStruct という名前がちょっと変...
僕が名前つけると testcase とかになると思います。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kadai2 課題2
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants