blob: c1417d5b211664735e7a22ab7edd24c43baf75b5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016, 2018 Obeo.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors: Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.eef.documentation.export.internal;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
/**
* This class is used to prepare the HTML pages of the documentation for the export on the EEF website. We are using a
* JUnit test case since it is easier to run during the build.
*
* @author sbegaudeau
*/
@RunWith(Suite.class)
@SuiteClasses({ ExporterTests.class, Exporter.class })
public class EEFDocumentationExport {
// do nothing
}