blob: 8c5a365f8307234fa3dd17a22df57caf4fcd8d44 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Obeo.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Obeo - initial API and implementation and/or initial documentation
* ...
*******************************************************************************/
package org.eclipse.intent.mapping.ide.tests.resource;
import org.eclipse.intent.mapping.MappingUtils;
import org.eclipse.intent.mapping.ide.resource.IResourceLocation;
import org.eclipse.intent.mapping.tests.base.AbstractLocationTests;
import org.junit.After;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
/**
* Tests for {@link IResourceLocation}.
*
* @author <a href="mailto:yvan.lussaud@obeo.fr">Yvan Lussaud</a>
*/
public abstract class AbstractResourceLocationTests extends AbstractLocationTests {
@Override
public void before() {
super.before();
MappingUtils.getMappingRegistry().register(base);
}
@After
public void after() {
MappingUtils.getMappingRegistry().unregister(base);
}
protected IResourceLocation createLocation() throws InstantiationException, IllegalAccessException,
ClassNotFoundException {
return getBase().getFactory().createElement(IResourceLocation.class);
}
@Test
public void setFullPathNull() throws InstantiationException, IllegalAccessException,
ClassNotFoundException {
IResourceLocation location = createLocation();
location.setFullPath(null);
assertEquals(null, location.getFullPath());
}
@Test
public void setFullPath() throws InstantiationException, IllegalAccessException, ClassNotFoundException {
IResourceLocation location = createLocation();
location.setFullPath("test text");
assertEquals("test text", location.getFullPath());
}
@Test
public void getFullPathDefault() throws InstantiationException, IllegalAccessException,
ClassNotFoundException {
IResourceLocation location = createLocation();
assertEquals(null, location.getFullPath());
}
}