ceremonyclient/bedlam/circuit/circuit_test.go
Cassandra Heart dbd95bd9e9
v2.1.0 (#439)
* v2.1.0 [omit consensus and adjacent] - this commit will be amended with the full release after the file copy is complete

* 2.1.0 main node rollup
2025-09-30 02:48:15 -05:00

20 lines
274 B
Go

//
// Copyright (c) 2022-2023 Markku Rossi
//
// All rights reserved.
//
package circuit
import (
"testing"
"unsafe"
)
func TestSize(t *testing.T) {
var g Gate
if unsafe.Sizeof(g) != 20 {
t.Errorf("unexpected gate size: got %v, expected 20", unsafe.Sizeof(g))
}
}