mirror of https://github.com/apache/ant-ivy
22 lines
555 B
Java
22 lines
555 B
Java
/*
|
|
* This file is subject to the licence found in LICENCE.TXT in the root directory of the project.
|
|
* Copyright Jayasoft 2005 - All rights reserved
|
|
*
|
|
* #SNAPSHOT#
|
|
*/
|
|
package fr.jayasoft.ivy;
|
|
|
|
import java.io.IOException;
|
|
import java.text.ParseException;
|
|
|
|
import junit.framework.TestCase;
|
|
|
|
public class ConfigureTest extends TestCase {
|
|
public void testDefault() throws ParseException, IOException {
|
|
Ivy ivy = new Ivy();
|
|
ivy.configureDefault();
|
|
|
|
assertNotNull(ivy.getDefaultResolver());
|
|
}
|
|
}
|