《Cracking the Coding Interview》——第12章:テスト——テーマ6

1286 ワード

2014-04-25 00:53
テーマ:どのように分布式銀行システムのATMをテストしますか?
ATMはAutomatic Teller Machineで、お金を引き出します.長いこと考えていたが、はっきりした考えが見つからなかったのは、自分があまりお金を引き出していないからかもしれない.本を読んで答えたところ、当てにならないと思ったので、この問題は薄っぺらだと思いました.
コード:
1 // 12.6 How would you test an ATM machine in a distributed banking system?

2 // Cannot figure out a clear picture, so I referred to the solution in the book.

3 // The solution in the book is not exactly a solution, but some tips and instrcutions on carrying out the conversation with the interviewer.

4 int main()

5 {

6     return 0;

7 }