quickemu-project / quicktest

Quickly and automatically test systems inside Quickemu virtual machines 🧑‍🔬
MIT License
16 stars 3 forks source link

feat: Move banner display to a function within tests #24

Closed popey closed 1 month ago

popey commented 1 month ago

What would you like to be added:

Currently, we use head -n 10 to display the notes (top ten lines of comments) from a test as it is being run. Separately we execute test_setup from the test in order to do any pre-test setup. It would make more sense to have a test_banner or test_description or better named function which gets called at the start of the test. In that function, the test author can describe more fully and prettier than a box of hashes, what the test does.

Why is this needed:

Consistency and better usability.

Additional context: