『Testable Lambda: Working Effectively with Legacy Lambda』
2024/3/25 1:06:00
https://speakerdeck.com/twada/testable-lambda-working-effectively-with-legacy-lambda?slide=56 から作ろうとした図
flowchart TD process{ある命名された処理が、その名前<br/>から期待される処理を完了できたか?} -- Yes --> success(成功) process -- No --> fail{常に失敗するか?} subgraph exception_sub [" "] direction RL fail -- Yes --> bug(バグ) fail -- No -->exception(例外) subgraph exception_handling ["例外処理"] direction RL 例外機構 エラー値 end exception exception_handling-->exception end