-
Notifications
You must be signed in to change notification settings - Fork 2
Test Framework
benliao1 edited this page Aug 3, 2020
·
24 revisions
This page will attempt to discuss the motivation behind the test framework / testing philosophy, the reasoning behind the test naming convention, and how the framework works.
This logic is in test.c
, and explains how we are able to record what the test is outputting for comparison after the test has finished while also being able to see the output of the test in real time in the terminal. (This diagram can be found in docs/Test-Output-Redirect-Logic.png
)
- Important
- Advanced/Specific