blob: bfc3049ea055fad67b85f8fcba9642389b8cde4a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2002, 2007 Innoopract Informationssysteme GmbH.
* 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:
* Innoopract Informationssysteme GmbH - initial API and implementation
******************************************************************************/
package org.eclipse.rap.rwt.internal.resources;
import junit.framework.TestCase;
import org.eclipse.rap.rwt.internal.resources.ResourceRegistry;
import org.eclipse.rap.rwt.resources.IResource;
import org.eclipse.rap.rwt.resources.IResourceManager.RegisterOptions;
public class ResourceRegistry_Test extends TestCase {
private ResourceRegistry resourceRegistry;
private static class TestResource implements IResource {
public String getCharset() {
return null;
}
public ClassLoader getLoader() {
return null;
}
public String getLocation() {
return null;
}
public RegisterOptions getOptions() {
return null;
}
public boolean isExternal() {
return false;
}
public boolean isJSLibrary() {
return false;
}
}
public void testAdd() {
IResource resource = new TestResource();
resourceRegistry.add( resource );
assertEquals( resource, resourceRegistry.get()[ 0 ] );
}
public void testClear() {
IResource resource = new TestResource();
resourceRegistry.add( resource );
resourceRegistry.clear();
assertEquals( 0, resourceRegistry.get().length );
}
protected void setUp() throws Exception {
resourceRegistry = new ResourceRegistry();
}
}