Lets code the all tests in the to do list. (this should be done one by, for the tutorial i used it just to show how to do it)
The FibonacciTest.java file will be look like
package tdd;
import org.junit.Test;
import static org.junit.Assert.*;
public class FibonacciTest {
@Test
public void testGetFibonacci_0() {
int x = 0;
Fibonacci instance = new Fibonacci();
int expResult =...