[jboss-cvs] jbossretro/src/test/org/jboss/test/lang ...

Paul Gier pgier at redhat.com
Tue May 1 18:17:41 EDT 2007


  User: pgier   
  Date: 07/05/01 18:17:41

  Added:       src/test/org/jboss/test/lang  BooleanTestCase.java
  Log:
  [JBBUILD-351] Added tests for jdk15 Boolean functionality.
  
  Revision  Changes    Path
  1.1      date: 2007/05/01 22:17:41;  author: pgier;  state: Exp;jbossretro/src/test/org/jboss/test/lang/BooleanTestCase.java
  
  Index: BooleanTestCase.java
  ===================================================================
  /*
   * JBoss, Home of Professional Open Source
   * Copyright 2005, JBoss Inc., and individual contributors as indicated
   * by the @authors tag. See the copyright.txt in the distribution for a
   * full listing of individual contributors.
   *
   * This is free software; you can redistribute it and/or modify it
   * under the terms of the GNU Lesser General Public License as
   * published by the Free Software Foundation; either version 2.1 of
   * the License, or (at your option) any later version.
   *
   * This software is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   * Lesser General Public License for more details.
   *
   * You should have received a copy of the GNU Lesser General Public
   * License along with this software; if not, write to the Free
   * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
   * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
   */
  
  package org.jboss.test.lang;
  
  import junit.framework.TestCase;
  
  /**
   * Tests the jdk15 specific functionality in java.lang.Boolean.
   *
   */
  public class BooleanTestCase extends TestCase
  {
     public void testParseBoolean() {
        assertTrue(Boolean.parseBoolean("true"));
        assertTrue(Boolean.parseBoolean("tRUe"));
  
        assertFalse(Boolean.parseBoolean(null));
        assertFalse(Boolean.parseBoolean("false"));
        assertFalse(Boolean.parseBoolean("junk"));
     }
  
     public void testCompareTo() {
        Boolean true1 = Boolean.TRUE;
        Boolean false1 = Boolean.FALSE;
        Boolean true2 = new Boolean(true);
        Boolean false2 = new Boolean(false);
        
        assertEquals(0, true1.compareTo(true1));
        assertEquals(0, true1.compareTo(true2));
        assertEquals(0, false1.compareTo(false1));
        assertEquals(0, false1.compareTo(false2));
  
        assertTrue(true1.compareTo(false1) > 0);
        assertTrue(false1.compareTo(true1) < 0);
     }
  }
  
  
  



More information about the jboss-cvs-commits mailing list