TestSimple.java Source code

Java tutorial

Introduction

Here is the source code for TestSimple.java

Source

import junit.framework.TestCase;

public class TestSimple extends TestCase {

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

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

    public void testAdds() {
        assertEquals(2, 1 + 1);
        assertEquals(4, 2 + 2);
        assertEquals(-8, -12 + 4);
    }

}