-
Notifications
You must be signed in to change notification settings - Fork 0
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
第18章 xUnit へ向かう小さな一歩 #23
Conversation
TODO
まずは手作業でのテストを行っていく。 |
「メソッドを呼んだら、フラグがtrueになる」を実装した。
|
runメソッドを追加して、インターフェースを整えた。
|
リファクタリングは部分的な箇所に限定してい行っていく。一回の変更は小さくすること。そして、そのテストを書くこと。 |
アドバイス頂いた。
|
今までの流れは、
という「三角測量」で進めてきた。今回もこれに準ずる。 |
基本的に、親クラスにしかないデータを扱うメソッドは親クラスに持っていこう。データとそれを扱う処理は近いほうが良い。 |
assert文の代替を行った。
異常であればException.
|
TODO
|
振り返り。
|
得た知見。
|
第Ⅱ部からは、メモ程度を書いていく。