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