Junit

package junit3_8;

import junit.framework.TestCase;

public class MyTest extends TestCase {
    public void testSimpleAdd() {
        assertTrue(true);
        assertTrue(false);
    }
}
package junit3_8;

import junit.textui.TestRunner;

/**
 * Hello world!
 *
 */
public class App 
{
    public static void main( String[] args )
    {
        String[] a = {"junit3_8.MyTest"};
        TestRunner.main(a);
    }
}
package junit4_8;

import static org.junit.Assert.*;

import org.junit.Test;

public class Mytest {
    @Test public void simpleAdd() {
        assertTrue(true);
        assertTrue(false);
    }
}
package junit4_8;

import org.junit.runner.JUnitCore;

/**
 * Hello world!
 *
 */
public class App 
{
    public static void main( String[] args )
    {
        String[] a = {"junit4_8.Mytest"};
        JUnitCore.main(a);
    }
}

 

posted @ 2015-12-01 19:57  wind90  阅读(178)  评论(0编辑  收藏  举报