1 // Copyright (c) 2003, Chad Woolley, All rights reserved.
2
3 package org.virtualmock.call;
4
5 /***
6 * A CallQueue which has support for tracking information specific to Calls
7 * which were invoked by the class under test. This includes methods to
8 * support retrieval of calls based on whether or not they have been verified
9 * yet.
10 *
11 * @author Chad Woolley
12 * @version $Revision: 1.8 $
13 */
14 public class InvokedCallQueue extends CallQueue {
15 }