TestSimple.java Source code

Java tutorial

Introduction

Here is the source code for TestSimple.java

Source

import junit.framework.*;

public class TestSimple extends TestCase {

    public TestSimple(String name) {
        super(name);
    }

    public void testAdd() {
        assertEquals(2, 1 + 1);
    }

}