blob: a615da4dc5c8a389c6d5e9ac26031efc1ef7a6f8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and others. 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: IBM Corporation - initial API and implementation
******************************************************************************/
package org.eclipse.equinox.p2.tests.download;
import junit.framework.*;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.equinox.p2.download.DownloadManager;
/**
* Simple tests of {@link DownloadManager} API.
*/
public class DownloadManagerTest extends TestCase {
public static Test suite() {
return new TestSuite(DownloadManagerTest.class);
}
/**
* Tests invocation of DownloadManager when there is nothing to download.
*/
public void testEmpty() {
DownloadManager manager = new DownloadManager();
IStatus result = manager.start(null);
assertTrue("1.0", result.isOK());
}
}