CST 438 - Week 4
This week focused on testing. Testing both the backend using unit test and the front end using Selenium. The reading this week covered "larger test." A larger test is a test where the scope is much larger than a unit test, which is usually limited to one thread, process, or machine, and involves several dependencies. They tend to be much slower, rely on resources from other tests/traffic, and nondeterministic. These larger tests can be browser and device testing, user evaluation, performance/load testing, configuration testing, etc. These are all types of testing that unit tests simply cannot perform.