Home | History | Annotate | Download | only in it-offline-instrumentation

Lines Matching refs:file

15 File file = new File( basedir, "child/target/generated-classes/jacoco/Example.class" );
16 if ( !file.isFile() ) {
17 throw new RuntimeException( "Could not find backup of instrumented class: " + file );
19 file = new File( basedir, "child/target/generated-classes/jacoco/DoNotInstrument.class" );
20 if ( file.isFile() ) {
21 throw new RuntimeException( "Excluded file should not be instrumented: " + file );
24 file = new File( basedir, "child/target/coverage.exec" );
25 if ( !file.isFile() )
27 throw new FileNotFoundException( "Could not find generated dump: " + file );