/**
* Asserts that two objects are equal, and in case the object is an Object[]
- * delegates to {@link #assertEquals(String, Object[], Object[]).
+ * delegates to {@link #assertEquals(String, Object[], Object[])}.
*
* @param aMsg
* Message.
/**
* Asserts that an exception occurs.
*
- * @param aRunnable
+ * @param aObject Erroneious code.
* Test cases should create a subclass of this which contains the
* code that should throw an exception.
* @param aType
/**
* Tracks the occurence of certain events in a test environment. Threads in a
* test environment tell the event tracker of the occurrence of certain events
- * using {@link #eventOccurred(Event)}. Test code inspects the events sent by a
- * thread using {@link #isEventSent(Thread, Event)}.
+ * using {@link #eventOccurred(Object)}. Test code inspects the events sent by a
+ * thread using {@link #isEventSent(Thread, Object)}.
*
* A record is kept of every event which is sent. Therefore, the occurrence of a
* new event does not erase a previously sent event.