// This is a very simple example of how to do heap usage testing of a program.
// To use this code for a test, you need to make some changes:
// - Move it into an integration test file within `tests/`.
// - Rename `main()` to whatever you want, and add `#[test]` to it.
//
// Also, only use one `#[test]` per integration test, to avoid tests
// interfering with each other.
static ALLOC: Alloc = Alloc;