TestLargest.java Source code

Java tutorial

Introduction

Here is the source code for TestLargest.java

Source

import junit.framework.TestCase;

public class TestLargest extends TestCase {
    public TestLargest(String name) {
        super(name);
    }

    public void testEmpty() {

        assertFalse("should be same", true);

    }
}