use of org.apache.ivy.TestFixture in project ant-ivy by apache.
the class LatestCompatibleConflictManagerTest method setUp.
@Before
public void setUp() {
fixture = new TestFixture();
LatestCompatibleConflictManager cm = new LatestCompatibleConflictManager();
fixture.getSettings().addConfigured(cm);
fixture.getSettings().setDefaultConflictManager(cm);
}
use of org.apache.ivy.TestFixture in project ant-ivy by apache.
the class RepositoryManagementEngineTest method setUp.
@Before
public void setUp() {
fixture = new TestFixture();
IvySettings settings = fixture.getSettings();
repository = new RepositoryManagementEngine(settings, new SearchEngine(settings), new ResolveEngine(settings, new EventManager(), new SortEngine(settings)));
}
Aggregations