/**@class junit.framework.Assert @extends java.lang.Object A set of assert methods. Messages are only displayed when an assert fails. */ var Assert = { /**Asserts that a condition is true. If it isn't it throws an AssertionFailedError with the given message. */ assertTrue : function( ) {}, /**Asserts that a condition is true. If it isn't it throws an AssertionFailedError. */ assertTrue : function( ) {}, /**Asserts that a condition is false. If it isn't it throws an AssertionFailedError with the given message. */ assertFalse : function( ) {}, /**Asserts that a condition is false. If it isn't it throws an AssertionFailedError. */ assertFalse : function( ) {}, /**Fails a test with the given message. */ fail : function( ) {}, /**Fails a test with no message. */ fail : function( ) {}, /**Asserts that two objects are equal. If they are not an AssertionFailedError is thrown with the given message. */ assertEquals : function( ) {}, /**Asserts that two objects are equal. If they are not an AssertionFailedError is thrown. */ assertEquals : function( ) {}, /**Asserts that two Strings are equal. */ assertEquals : function( ) {}, /**Asserts that two Strings are equal. */ assertEquals : function( ) {}, /**Asserts that two doubles are equal concerning a delta. If they are not an AssertionFailedError is thrown with the given message. If the expected value is infinity then the delta value is ignored. */ assertEquals : function( ) {}, /**Asserts that two doubles are equal concerning a delta. If the expected value is infinity then the delta value is ignored. */ assertEquals : function( ) {}, /**Asserts that two floats are equal concerning a positive delta. If they are not an AssertionFailedError is thrown with the given message. If the expected value is infinity then the delta value is ignored. */ assertEquals : function( ) {}, /**Asserts that two floats are equal concerning a delta. If the expected value is infinity then the delta value is ignored. */ assertEquals : function( ) {}, /**Asserts that two longs are equal. If they are not an AssertionFailedError is thrown with the given message. */ assertEquals : function( ) {}, /**Asserts that two longs are equal. */ assertEquals : function( ) {}, /**Asserts that two booleans are equal. If they are not an AssertionFailedError is thrown with the given message. */ assertEquals : function( ) {}, /**Asserts that two booleans are equal. */ assertEquals : function( ) {}, /**Asserts that two bytes are equal. If they are not an AssertionFailedError is thrown with the given message. */ assertEquals : function( ) {}, /**Asserts that two bytes are equal. */ assertEquals : function( ) {}, /**Asserts that two chars are equal. If they are not an AssertionFailedError is thrown with the given message. */ assertEquals : function( ) {}, /**Asserts that two chars are equal. */ assertEquals : function( ) {}, /**Asserts that two shorts are equal. If they are not an AssertionFailedError is thrown with the given message. */ assertEquals : function( ) {}, /**Asserts that two shorts are equal. */ assertEquals : function( ) {}, /**Asserts that two ints are equal. If they are not an AssertionFailedError is thrown with the given message. */ assertEquals : function( ) {}, /**Asserts that two ints are equal. */ assertEquals : function( ) {}, /**Asserts that an object isn't null. */ assertNotNull : function( ) {}, /**Asserts that an object isn't null. If it is an AssertionFailedError is thrown with the given message. */ assertNotNull : function( ) {}, /**Asserts that an object is null. If it isn't an {@link junit.framework.AssertionError} is thrown. Message contains: Expected: <null> but was: object @param {Object {Object}} object Object to check or <code>null</code> */ assertNull : function( ) {}, /**Asserts that an object is null. If it is not an AssertionFailedError is thrown with the given message. */ assertNull : function( ) {}, /**Asserts that two objects refer to the same object. If they are not an AssertionFailedError is thrown with the given message. */ assertSame : function( ) {}, /**Asserts that two objects refer to the same object. If they are not the same an AssertionFailedError is thrown. */ assertSame : function( ) {}, /**Asserts that two objects do not refer to the same object. If they do refer to the same object an AssertionFailedError is thrown with the given message. */ assertNotSame : function( ) {}, /**Asserts that two objects do not refer to the same object. If they do refer to the same object an AssertionFailedError is thrown. */ assertNotSame : function( ) {}, /** */ failSame : function( ) {}, /** */ failNotSame : function( ) {}, /** */ failNotEquals : function( ) {}, /** */ format : function( ) {}, };