happiness (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) happiness

4年間シーケンス図を読み違えていたエンジニアも存在する

ぼくです。

サンプル

UMLのシーケンス図

正しい解釈

class System
  def aaa
    user = User.new
    user.health?
  end
end

class User
  def health?
     true
  end
end

間違った解釈

class System
  def health?
    user.some_kind_of_method
  end
end

class User
  def some_kind_of_method
     true
  end
end