Created
May 12, 2014 02:55
-
-
Save kyonmm/b7ea6a5272b0f6863d4c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 実装が透けている例 : 避けたい | |
| def sut = new User() | |
| def fooGame = new FooGame() | |
| sut.touch(fooGame.icon) | |
| // 要求分析や定義に使えそうな例 : 使いたい | |
| def A_user = new User() | |
| def installedFooGame = new FooGame() | |
| A_user.touch(installedFooGame.icon) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment