Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / extensions / org.gvsig.installer / org.gvsig.installer.lib / org.gvsig.installer.lib.impl / src / test / java / org / gvsig / installer / lib / impl / DependencyTest.java @ 37599

History | View | Annotate | Download (407 Bytes)

1
package org.gvsig.installer.lib.impl;
2

    
3
import junit.framework.TestCase;
4

    
5
import org.gvsig.installer.lib.api.Dependency;
6

    
7
public class DependencyTest extends TestCase {
8

    
9
        public void testParse() {
10
                Dependency dep = new DefaultDependency();
11

    
12
                dep.parse("required: org.gvsig.app >= 2.0.0-SNAPSHOT-2030");
13
                String s = dep.toString();
14
                assertEquals("required: org.gvsig.app >= 2.0.0-SNAPSHOT-2030", s);
15
        }
16
}