Skip to content

Instantly share code, notes, and snippets.

@kyonmm
Created May 12, 2014 02:55
Show Gist options
  • Select an option

  • Save kyonmm/b7ea6a5272b0f6863d4c to your computer and use it in GitHub Desktop.

Select an option

Save kyonmm/b7ea6a5272b0f6863d4c to your computer and use it in GitHub Desktop.
// 実装が透けている例 : 避けたい
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