29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
/*******************************************************************************
|
|
* Copyright (c) 2009, 2021 Mountainminds GmbH & Co. KG and Contributors
|
|
* This program and the accompanying materials are made available under
|
|
* the terms of the Eclipse Public License 2.0 which is available at
|
|
* http://www.eclipse.org/legal/epl-2.0
|
|
*
|
|
* SPDX-License-Identifier: EPL-2.0
|
|
*
|
|
* Contributors:
|
|
* Marc R. Hoffmann - initial API and implementation
|
|
*
|
|
*******************************************************************************/
|
|
import java.io.*;
|
|
|
|
File htmlReportFile = new File( basedir, "target/site/jacoco/index.html" );
|
|
if ( htmlReportFile.isFile() ) {
|
|
throw new RuntimeException( "Unexpected HTML report was created" );
|
|
}
|
|
|
|
File xmlReportFile = new File( basedir, "target/site/jacoco/jacoco.xml" );
|
|
if ( !xmlReportFile.isFile() ) {
|
|
throw new RuntimeException( "XML report was not created" );
|
|
}
|
|
|
|
File csvReportFile = new File( basedir, "target/site/jacoco/jacoco.csv" );
|
|
if ( !csvReportFile.isFile() ) {
|
|
throw new RuntimeException( "CSV report was not created" );
|
|
}
|