package junit.learnnow;

import static org.junit.Assert.*;

import org.junit.Test;

public class MyClassTest {

	@Test
	public void testMyMethodInt() {
		fail("Not yet implemented");
	}

	@Test
	public void testMyMethodDouble() {
		fail("Not yet implemented");
	}

	@Test
	public void testMyMethodBoolean() {
		fail("Not yet implemented");
	}

	@Test
	public void testMyMethodString() {
		fail("Not yet implemented");
	}

	@Test
	public void testGoodHouseLoanRate(){
		fail("Not yet implemented");
	}

}