DigglesTool/pkg/threedb/coordinate_test.go
2024-07-19 10:21:26 +03:00

15 lines
223 B
Go

package threedb
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestCoordinate_Set(t *testing.T) {
expect := Coordinate{1, 1}
coord := Coordinate{}
coord.Set(1, 1)
require.Equal(t, expect, coord)
}