Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a Junit Test for the following method (Java Class) import java.util.*; class Fibonacci { public static int fib(int n) { //If n=0 or n=1

Write a Junit Test for the following method (Java Class)

import java.util.*;

class Fibonacci {

public static int fib(int n) { //If n=0 or n=1 we return 0 and 1 respectively if(n < 2) { return n; } else { //If n>2 calling fin(n-1) and fib(n-2) recursively and adding them return fib(n-1)+fib(n-2); } } }

public class FibonacciTest {

Your code goes here///

(Please use assertEquals for testing)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Climate And Environmental Database Systems

Authors: Michael Lautenschlager ,Manfred Reinke

1st Edition

1461368332, 978-1461368335

More Books

Students also viewed these Databases questions