Verify that aa is empty.
UnitTestException on failure.
int[] ints; string[] strings; string[string] aa; shouldBeEmpty(ints); shouldBeEmpty(strings); shouldBeEmpty(aa); ints ~= 1; strings ~= "foo"; aa["foo"] = "bar";
See Implementation
Verify that aa is empty.