package mrjeffjohnston;

import org.junit.Assert;
import org.junit.Test;

public class DummyTest {

    @Test
    public void testFive() {
        Assert.assertEquals(5, new Dummy().five());
    }
}

