This project has retired. For details please refer to its Attic page.
ReleaseVersionTest xref
View Javadoc
1   /*
2    * Copyright 2001-2009 The Apache Software Foundation.
3    * 
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *      http://www.apache.org/licenses/LICENSE-2.0
8    * 
9    * Unless required by applicable law or agreed to in writing, software
10   * distributed under the License is distributed on an "AS IS" BASIS,
11   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12   * See the License for the specific language governing permissions and
13   * limitations under the License.
14   */
15  package org.apache.juddi.config;
16  
17  import org.junit.Assert;
18  import org.junit.Test;
19  
20  /**
21   * @author <a href="mailto:kstam@apache.org">Kurt T Stam</a>
22   */
23  public class ReleaseVersionTest 
24  {
25  	@Test
26  	public void readRegistryVersion()
27  	{
28  		String registryVersion = Release.getRegistryVersion();
29  		System.out.println(registryVersion);
30  		Assert.assertTrue(registryVersion.startsWith("3.") || registryVersion.startsWith("unknown"));
31  	}
32  	
33  	
34  	
35  }