KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > junit > HeaderNames


1 /*****************************************
2  * *
3  * JBoss Portal: The OpenSource Portal *
4  * *
5  * Forums JBoss Portlet *
6  * *
7  * Distributable under LGPL license. *
8  * See terms of license at gnu.org. *
9  * *
10  *****************************************/

11 package org.jboss.portal.junit;
12
13 /**
14  * Defines header names that the client test suite put in the request that
15  * can be used by the server side tests.
16  *
17  * @author <a HREF="mailto:julien@jboss.org">Julien Viet</a>
18  * @version $Revision: 1.1 $
19  */

20 public interface HeaderNames
21 {
22    /**
23     * Test test ID.
24     */

25    String JavaDoc TEST_ID = "org.jboss.portal.junit#TEST_ID";
26
27    /**
28     * The number of time this test has been invoked.
29     */

30    String JavaDoc REQUEST_COUNT = "org.jboss.portal.junit#REQUEST_COUNT";
31
32 }
33
Popular Tags