Lab 8 - Starter

Name: Quanling Zhao

  1. We should run automated tests within a Github action that runs whenever code is pushed, this allows as to catch bugs and error early before going too deep into development and allow fast iteration in Agile.
  2. No, unit testing is more suitable for testing a specific function. E2E test is more useful will test and evaluate the entire progeam holistically.
  3. I would not use unit test for message function as it is a complex feature that involves many parts (senting, receving, etc...).
  4. I would use unit test for max_length function as it is a simply function that can be texted extensively without consider its interactions with other components.