FileDocCategorySizeDatePackage
ParsePositionTest.javaAPI DocAndroid 1.5 API6138Wed May 06 22:41:06 BST 2009org.apache.harmony.text.tests.java.text

ParsePositionTest.java

/* 
 * 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.harmony.text.tests.java.text;

import dalvik.annotation.TestTargets;
import dalvik.annotation.TestLevel;
import dalvik.annotation.TestTargetNew;
import dalvik.annotation.TestTargetClass;

import java.text.ParsePosition;

@TestTargetClass(ParsePosition.class) 
public class ParsePositionTest extends junit.framework.TestCase {

    ParsePosition pp;

    /**
     * @tests java.text.ParsePosition#ParsePosition(int)
     */
    @TestTargetNew(
        level = TestLevel.COMPLETE,
        notes = "",
        method = "ParsePosition",
        args = {int.class}
    )
    public void test_ConstructorI() {
        // Test for method java.text.ParsePosition(int)
        try {
            ParsePosition pp1 = new ParsePosition(Integer.MIN_VALUE);
            assertTrue("Initialization failed.",
                    pp1.getIndex() == Integer.MIN_VALUE);
            assertEquals("Initialization failed.", -1, pp1.getErrorIndex());
        } catch (Exception e) {
            fail("Constructor failed.");
        }

    }

    /**
     * @tests java.text.ParsePosition#equals(java.lang.Object)
     */
    @TestTargetNew(
        level = TestLevel.COMPLETE,
        notes = "",
        method = "equals",
        args = {java.lang.Object.class}
    )
    public void test_equalsLjava_lang_Object() {
        // Test for method boolean
        // java.text.ParsePosition.equals(java.lang.Object)
        ParsePosition pp2 = new ParsePosition(43);
        pp2.setErrorIndex(56);
        assertTrue("equals failed.", !pp.equals(pp2));
        pp.setErrorIndex(56);
        pp.setIndex(43);
        assertTrue("equals failed.", pp.equals(pp2));
    }

    /**
     * @tests java.text.ParsePosition#getErrorIndex()
     */
    @TestTargets({
        @TestTargetNew(
            level = TestLevel.COMPLETE,
            notes = "",
            method = "getErrorIndex",
            args = {}
        ),
        @TestTargetNew(
            level = TestLevel.COMPLETE,
            notes = "",
            method = "setErrorIndex",
            args = {int.class}
        )
    })
    public void test_getErrorIndex() {
        // Test for method int java.text.ParsePosition.getErrorIndex()
        pp.setErrorIndex(56);
        assertEquals("getErrorIndex failed.", 56, pp.getErrorIndex());
        pp.setErrorIndex(Integer.MAX_VALUE);
        assertEquals("getErrorIndex failed.", Integer.MAX_VALUE, 
                pp.getErrorIndex()); 
        assertEquals("getErrorIndex failed.", Integer.MAX_VALUE, 
                pp.getErrorIndex());         
    }

    /**
     * @tests java.text.ParsePosition#getIndex()
     */
    @TestTargetNew(
        level = TestLevel.COMPLETE,
        notes = "",
        method = "getIndex",
        args = {}
    )
    public void test_getIndex() {
        // Test for method int java.text.ParsePosition.getIndex()
        assertTrue("getIndex failed.", pp.getIndex() == Integer.MAX_VALUE);
    }

    /**
     * @tests java.text.ParsePosition#hashCode()
     */
    @TestTargetNew(
        level = TestLevel.COMPLETE,
        notes = "",
        method = "hashCode",
        args = {}
    )
    public void test_hashCode() {
        // Test for method int java.text.ParsePosition.hashCode()
        ParsePosition pp1 = new ParsePosition(0);
        ParsePosition pp2 = new ParsePosition(0);
        assertTrue("hashCode returns non equal hash codes for equal objects.", 
                pp1.hashCode() == pp2.hashCode());
        pp1.setIndex(Integer.MAX_VALUE);
        assertTrue("hashCode returns equal hash codes for non equal objects.", 
                pp1.hashCode() != pp2.hashCode());
    }

    /**
     * @tests java.text.ParsePosition#setErrorIndex(int)
     */
    @TestTargetNew(
        level = TestLevel.COMPLETE,
        notes = "",
        method = "setErrorIndex",
        args = {int.class}
    )
    public void test_setErrorIndexI() {
        // Test for method void java.text.ParsePosition.setErrorIndex(int)
        pp.setErrorIndex(4564);
        assertEquals("setErrorIndex failed.", 4564, pp.getErrorIndex());
    }

    /**
     * @tests java.text.ParsePosition#setIndex(int)
     */
    @TestTargetNew(
        level = TestLevel.COMPLETE,
        notes = "",
        method = "setIndex",
        args = {int.class}
    )
    public void test_setIndexI() {
        // Test for method void java.text.ParsePosition.setIndex(int)
        pp.setIndex(4564);
        assertEquals("setErrorIndex failed.", 4564, pp.getIndex());
    }

    /**
     * @tests java.text.ParsePosition#toString()
     */
    @TestTargetNew(
        level = TestLevel.COMPLETE,
        notes = "",
        method = "toString",
        args = {}
    )
    public void test_toString() {
        // Test for method java.lang.String java.text.ParsePosition.toString()
        // String format is not specified.
        assertNotNull("toString returns null.", pp.toString());
    }

    /**
     * Sets up the fixture, for example, open a network connection. This method
     * is called before a test is executed.
     */
    protected void setUp() {

        pp = new ParsePosition(Integer.MAX_VALUE);
    }

    /**
     * Tears down the fixture, for example, close a network connection. This
     * method is called after a test is executed.
     */
    protected void tearDown() {
    }
}