download TestJunit.java
Language: Java
LOC: 21
Project Info
' href='/info.aspx?c=ProjectInfo&pid=P4U8PWB5R6WUX1WQBD5H456NNA'> BeOnTime
Server: BerliOS
Type: cvs
...umlv\smoreau\beontime\test\
   .cvsignore
   Clipboard.java
   DragAndDrop.java
   Print.java
   TestDate.java
   TestJunit.java
   TestLDAP.java
   TestSql.java

package fr.umlv.smoreau.beontime.test;

import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

/**
 * @author BeOnTime
 */
public class TestJunit extends TestCase {
    public TestJunit(String name) {
        super(name);
    }
    
    public void testLastComponent() {
        assertEquals("stdlib.h", "stdlib.h");
    }
    
    public void testLastComponentWithEmptyPath() {
        assertEquals("", "");
    }
    
    public static Test suite() {
        /*TestSuite suite= new TestSuite();
        suite.addTest(new TestJunit("testLastComponent"));
        suite.addTest(new TestJunit("testLastComponentWithEmptyPath"));
        return suite;*/
        return new TestSuite(TestJunit.class);
    }

    public static void main(String[] args) {
        junit.textui.TestRunner.run(suite());
    }

}

About Koders | Resources | Downloads | Support | Black Duck | Submit Project | Terms of Service | DMCA | Privacy Policy | Site Map| Contact Us