1/*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements.  See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License.  You may obtain a copy of the License at
8 *
9 *     http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17package libcore.java.text;
18
19import java.text.ParsePosition;
20
21public class OldParsePositionTest extends junit.framework.TestCase {
22
23    ParsePosition pp = new ParsePosition(Integer.MAX_VALUE);
24
25    public void test_hashCode() {
26        // Test for method int java.text.ParsePosition.hashCode()
27        ParsePosition pp1 = new ParsePosition(0);
28        ParsePosition pp2 = new ParsePosition(0);
29        assertTrue("hashCode returns non equal hash codes for equal objects.",
30                pp1.hashCode() == pp2.hashCode());
31        pp1.setIndex(Integer.MAX_VALUE);
32        assertTrue("hashCode returns equal hash codes for non equal objects.",
33                pp1.hashCode() != pp2.hashCode());
34    }
35
36    public void test_getErrorIndex() {
37        // Test for method int java.text.ParsePosition.getErrorIndex()
38        pp.setErrorIndex(56);
39        assertEquals("getErrorIndex failed.", 56, pp.getErrorIndex());
40        pp.setErrorIndex(Integer.MAX_VALUE);
41        assertEquals("getErrorIndex failed.", Integer.MAX_VALUE,
42                pp.getErrorIndex());
43        assertEquals("getErrorIndex failed.", Integer.MAX_VALUE,
44                pp.getErrorIndex());
45    }
46}
47