blob: da1a935c24401020f92ed357a8333e861a902a47 [file] [log] [blame]
/*
* Copyright (c) 2014 Eike Stepper (Berlin, Germany) 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:
* Eike Stepper - initial API and implementation
*/
package org.eclipse.oomph.extractor.lib.tests;
import org.eclipse.oomph.extractor.lib.BINExtractor;
/**
* @author Eike Stepper
*/
public class BINExtractorTest
{
private static final String[] ARGS = { "../org.eclipse.oomph.extractor/Win64-Debug/eclipse-installer-64.exe", "extracted", System.getProperty("java.home") };
public static void main(String[] args) throws Exception
{
BINExtractor.main(ARGS);
}
}