You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-algorithms/numerical/fibonacci_test.go

20 lines
276 B
Go

package numerical
import "testing"
func TestFibonacci(t *testing.T) {
if fibo(10) != 55 {
t.Error("[Error] Fibonacci(10) is wrong")
}
if fibo(0) != 0 {
t.Error("[Error] Fibonacci(0) is wrong")
}
if fibo(3) != 2 {
t.Error("[Error] Fibonacci(3) is wrong")
}
}