ceremonyclient/bedlam/compiler/utils/point_test.go
Cassandra Heart e51992f3e8
OT
2025-03-23 21:11:16 -05:00

19 lines
230 B
Go

//
// Copyright (c) 2020-2021 Markku Rossi
//
// All rights reserved.
//
package utils
import (
"testing"
)
func TestPoint(t *testing.T) {
p := Point{}
if !p.Undefined() {
t.Errorf("undefined point is not undefined")
}
}