Skip to main content
summaryrefslogtreecommitdiffstats
blob: 9b3d23f02e76ed61a48ebe7c4dd0b664f8a945d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*******************************************************************************
 * Copyright (c) 2006 - 2006 Mylar eclipse.org project and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Mylar project committers - initial API and implementation
 *******************************************************************************/

package org.eclipse.mylar.trac.tests;

/**
 * @author Steffen Pingel
 */
public class Constants {

	public static final String TEST_TRAC_096_URL = "http://mylar.eclipse.org/trac096";

	public static final String TEST_TRAC_010_URL = "http://mylar.eclipse.org/trac010";

	public static final String TEST_TRAC_010_SSL_URL = "https://mylar.eclipse.org/trac010";

	public static final String TEST_TRAC_010_DIGEST_AUTH_URL = "http://mylar.eclipse.org/trac010digest";

	public static final String TEST_TRAC_INVALID_URL = "http://mylar.eclipse.org/doesnotexist";

}

Back to the top