For some reason this test, code below, fails when it shouldn't.
The reason is, as you might have guessed, that the Find method doesn't return a record.
But it should because there actually is a record in the DMFDefinitionGroup table that complies with the Find method criteria.
So my question is, how come? Why?
[SysTestMethodAttribute]
public void testDemo()
{
definitionGroupName = "A definition group that actually exists";
DMFDefinitionGroup definitionGroup;
definitionGroup = DMFDefinitionGroup::find(definitionGroupName);
this.assertNotNull(definitionGroup, strFmt(DefinitionNotCreatedMsg, definitionGroupName));
}