blob: cac8dc89bfc65bc89e6a11600aca989b542baab0 [file] [log] [blame]
// Copyright 2005 The Apache Software Foundation
//
// Licensed 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.tapestry.util;
import org.apache.hivemind.Resource;
import org.apache.tapestry.BaseComponentTestCase;
import org.testng.annotations.Test;
/**
* Tests for {@link org.apache.tapestry.util.DescribedLocation}.
*
* @author Howard Lewis Ship
* @since 4.0
*/
@Test
public class TestDescribedLocation extends BaseComponentTestCase
{
public void testLineRowAreZero()
{
Resource r = newMock(Resource.class);
replay();
DescribedLocation l = new DescribedLocation(r, "location description");
assertEquals(0, l.getLineNumber());
assertEquals(0, l.getColumnNumber());
assertSame(r, l.getResource());
assertEquals("location description", l.toString());
verify();
}
public void testEquals()
{
Resource r = newMock(Resource.class);
Resource r2 = newMock(Resource.class);
replay();
DescribedLocation l = new DescribedLocation(r, "location description");
DescribedLocation l2 = new DescribedLocation(r2, "location description");
DescribedLocation l3 = new DescribedLocation(r, "wrong description");
DescribedLocation l4 = new DescribedLocation(r, "location description");
assertEquals(false, l.equals(null));
assertEquals(false, l.equals("XYZ"));
assertEquals(false, l.equals(l2));
assertEquals(false, l.equals(l3));
assertEquals(true, l.equals(l4));
verify();
}
}