1 // Copyright (c) 2003, Chad Woolley, All rights reserved.
2
3 package org.virtualmock;
4
5 /***
6 * This class contains constants.
7 *
8 * @author Chad Woolley
9 * @version $Revision: 1.4 $
10 */
11 public class Constants {
12 /*** Constant representing the record phase. */
13 public static final int RECORD_PHASE = 1;
14
15 /*** Constant representing the playback phase. */
16 public static final int PLAYBACK_PHASE = 2;
17
18 /*** Constant representing the verify phase. */
19 public static final int VERIFY_PHASE = 3;
20 }