Files
zomq/zmq/zmq_test.odin
T

14 lines
155 B
Odin

#+test
package zmq
import "core:testing"
@(test)
test_error_type :: proc(t: ^testing.T) {
e: Error = .EFSM
testing.expect_value(t, size_of(e), 8)
}