forked from Archives/navigator.lua
26 lines
392 B
Go
26 lines
392 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
func TestDog(t *testing.T) {
|
||
|
require.NoError(t, nil)
|
||
|
d := NewDog("Fibi", 4)
|
||
|
fmt.Println(d.name)
|
||
|
if d.name != "Fibi" {
|
||
|
t.Errorf("NewDog failled %v", d)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestCat(t *testing.T) {
|
||
|
d := NewDog("Fibi cat", 4)
|
||
|
fmt.Println(d.name)
|
||
|
if d.name != "Fibi cat" {
|
||
|
t.Errorf("NewDog failled %v", d)
|
||
|
}
|
||
|
}
|