diff --git a/assignment/socket_chat--patterns-and-testing.md b/assignment/socket_chat--patterns-and-testing.md index a18a09f662ccab0ecffb4036842e91aaa85e002e..66f2855c06642e4c967e97c07a3022d6e74c0472 100644 --- a/assignment/socket_chat--patterns-and-testing.md +++ b/assignment/socket_chat--patterns-and-testing.md @@ -9,11 +9,11 @@ provide rudimentary protection of the messages passing over the network. You will also perform *whitebox testing* of part of your code. In the Calculator assignment you developed a set of test cases based on the blackbox -specification. Rarely will such a test suite fully exercise the code. In -cooperation with a partner, extend your test suite such that each statement in -the source code is executed at least once. (Note also that whitebox testing -will rarely cover the blackbox specification. In practice, a combination of -blackbox and whitebox testing is necessary.) +specification. Rarely will such a test suite fully exercise the code. You will +develop a test suite such that each statement in the code under test is +executed at least once. (Note also that whitebox testing will rarely cover the +blackbox specification. In practice, a combination of blackbox and whitebox +testing is necessary.) ### Objectives