Use Quick and Slow tests
mainAlcotest supports two test speeds to help manage execution time:
`Quick: Standard tests intended to run on every invocation.`Slow: Stress tests or heavy computations intended to run occasionally (e.g., before a release).
To suppress `Slow tests and run only `Quick tests, use the -q flag.
$ ./test.exe -q # run only the quick tests
$ ./test.exe # run quick and slow tests