/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * 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.xwiki.model.internal.reference; import org.junit.Test; import org.xwiki.component.manager.ComponentLookupException; import org.xwiki.model.reference.DocumentReferenceResolver; import org.xwiki.model.reference.EntityReferenceResolver; import org.xwiki.model.reference.EntityReferenceSerializer; import org.xwiki.test.jmock.AbstractComponentTestCase; public class ReferencesTest extends AbstractComponentTestCase { @Test public void testLookup() throws ComponentLookupException, Exception { getComponentManager().getInstance(DocumentReferenceResolver.class, "default/reference"); getComponentManager().getInstance(DocumentReferenceResolver.TYPE_REFERENCE, "default/reference"); getComponentManager().getInstance(DocumentReferenceResolver.class, "explicit/reference"); getComponentManager().getInstance(DocumentReferenceResolver.TYPE_REFERENCE, "explicit/reference"); getComponentManager().getInstance(EntityReferenceResolver.class, "default/reference"); getComponentManager().getInstance(EntityReferenceResolver.TYPE_REFERENCE, "default/reference"); getComponentManager().getInstance(EntityReferenceResolver.class, "explicit/reference"); getComponentManager().getInstance(EntityReferenceResolver.TYPE_REFERENCE, "explicit/reference"); getComponentManager().getInstance(EntityReferenceSerializer.class, "local/reference"); getComponentManager().getInstance(EntityReferenceSerializer.TYPE_REFERENCE, "local/reference"); } }