April 05
Prof. Ismael H. F. Santos -  ismael@tecgraf.puc-rio.br                                                          2
Assertion methods (1)
nBoolean conditions are true or false
nassertTrue(condition)
nassertFalse(condition)
nObjects are null or non-null
nassertNull(object)
nassertNotNull(object)
nObjects are identical (i.e. two references to the same object), or not identical. 
nassertSame(expected, actual)
ntrue if: expected == actual
nassertNotSame(expected, actual)