compares the passed in expected object to an actual checking that they both contain all the same
properties and property types as are found in the expected object. for example, given an expected
of:
would return true because actual has both a foo property of type string
and a baz property of type boolean. usage in an AftTest.verify function would look like:
compares the passed in
expectedobject to anactualchecking that they both contain all the same properties and property types as are found in theexpectedobject. for example, given anexpectedof:and an
actualof:calling the following:
would return true because
actualhas both afooproperty of typestringand abazproperty of typeboolean. usage in anAftTest.verifyfunction would look like: