blob: e1d2bc8ab068bb26d652397cc6e4dad5494e643d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2010 VMware Inc.
* 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:
* VMware Inc. - initial contribution
*******************************************************************************/
package org.eclipse.virgo.kernel.artifact.fs.internal;
import static org.junit.Assert.assertTrue;
import java.io.File;
import org.eclipse.virgo.kernel.artifact.fs.internal.FileArtifactFS;
import org.eclipse.virgo.kernel.artifact.fs.internal.FileArtifactFSEntry;
import org.junit.Test;
public class FileArtifactFSTests {
private final FileArtifactFS artifactFS = new FileArtifactFS(new File(".classpath"));
@Test(expected = IllegalArgumentException.class)
public void constructorDirectory() {
new FileArtifactFS(new File("build"));
}
@Test(expected = IllegalArgumentException.class)
public void getEntryNonNull() {
this.artifactFS.getEntry("test");
}
@Test
public void getEntry() {
assertTrue(this.artifactFS.getEntry(null) instanceof FileArtifactFSEntry);
}
}