From 51bf2ce1c0b95922fb83bb03bf31ed73ef60bfd0 Mon Sep 17 00:00:00 2001 From: Henri Yandell Date: Sun, 30 Jan 2011 07:54:29 +0000 Subject: [PATCH] Adding unit test for JavaVersion git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1065212 13f79535-47bb-0310-9956-ffa450edef68 --- pom.xml | 2 +- .../apache/commons/lang3/JavaVersionTest.java | 53 +++++++++++++++++++ 2 files changed, 54 insertions(+), 1 deletion(-) create mode 100644 src/test/java/org/apache/commons/lang3/JavaVersionTest.java diff --git a/pom.xml b/pom.xml index 7cea931cc..2f7c8dbbd 100644 --- a/pom.xml +++ b/pom.xml @@ -27,7 +27,7 @@ 4.0.0 org.apache.commons commons-lang3 - 3.0-SNAPSHOT + 3.0 Commons Lang 2001 diff --git a/src/test/java/org/apache/commons/lang3/JavaVersionTest.java b/src/test/java/org/apache/commons/lang3/JavaVersionTest.java new file mode 100644 index 000000000..b24b54c91 --- /dev/null +++ b/src/test/java/org/apache/commons/lang3/JavaVersionTest.java @@ -0,0 +1,53 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package org.apache.commons.lang3; + +import static org.apache.commons.lang3.JavaVersion.*; + +import junit.framework.TestCase; + +/** + * Unit tests {@link org.apache.commons.lang3.JavaVersion}. + * + * @author Apache Software Foundation + * @version $Id: JavaVersionTest.java 918366 2010-03-03 08:56:22Z bayard $ + */ +public class JavaVersionTest extends TestCase { + + public void testGetJavaVersion() { + assertEquals("0.9 failed", JAVA_0_9, get("0.9")); + assertEquals("1.1 failed", JAVA_1_1, get("1.1")); + assertEquals("1.2 failed", JAVA_1_2, get("1.2")); + assertEquals("1.3 failed", JAVA_1_3, get("1.3")); + assertEquals("1.4 failed", JAVA_1_4, get("1.4")); + assertEquals("1.5 failed", JAVA_1_5, get("1.5")); + assertEquals("1.6 failed", JAVA_1_6, get("1.6")); + assertEquals("1.7 failed", JAVA_1_7, get("1.7")); + } + + public void testAtLeast() { + assertFalse("1.2 at least 1.5 passed", JAVA_1_2.atLeast(JAVA_1_5)); + assertTrue("1.5 at least 1.2 failed", JAVA_1_5.atLeast(JAVA_1_2)); + assertFalse("1.6 at least 1.7 passed", JAVA_1_6.atLeast(JAVA_1_7)); + + assertTrue("0.9 at least 1.5 failed", JAVA_0_9.atLeast(JAVA_1_5)); + assertFalse("0.9 at least 1.6 passed", JAVA_0_9.atLeast(JAVA_1_6)); + } + +}