- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for AbstractProfileActivatorTest (0.08 seconds)
-
compat/maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/AbstractProfileActivatorTest.java
/** * Provides common services to test {@link ProfileActivator} implementations. * * @param <T> the type of {@link ProfileActivator} being tested */ @Deprecated public abstract class AbstractProfileActivatorTest<T extends ProfileActivator> { protected T activator; @BeforeEach abstract void setUp() throws Exception; @AfterEach void tearDown() throws Exception {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Mar 21 04:56:21 GMT 2025 - 2.4K bytes - Click Count (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/PropertyProfileActivatorTest.java
import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; /** * Tests {@link PropertyProfileActivator}. * */ @Deprecated class PropertyProfileActivatorTest extends AbstractProfileActivatorTest<PropertyProfileActivator> { @BeforeEach @Override void setUp() throws Exception { activator = new PropertyProfileActivator(); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Mar 21 04:56:21 GMT 2025 - 5.7K bytes - Click Count (0)