All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tngtech.archunit.junit.ClassAnalysisRequest Maven / Gradle / Ivy

Go to download

A Java architecture test library, to specify and assert architecture rules in plain Java - Module 'archunit-junit4'

There is a newer version: 1.3.0
Show newest version
package com.tngtech.archunit.junit;

import com.tngtech.archunit.core.importer.ImportOption;

/**
 * Simple adapter to separate the JUnit version specific @AnalyzeClasses from infrastructure like {@link ClassCache}.
 */
interface ClassAnalysisRequest {
    String[] getPackageNames();

    Class[] getPackageRoots();

    Class[] getLocationProviders();

    Class[] getImportOptions();

    CacheMode getCacheMode();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy