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.
navigator.lua/playground/go/fib_test.go

18 lines
220 B
Go

package main
import (
"fmt"
"testing"
"github.com/stretchr/testify/require"
)
func TestFib(t *testing.T) {
require.NoError(t, nil)
d := Fib(1)
fmt.Println(d)
if d != 1 {
t.Errorf("NewDog failled %v", d)
}
}