mirror of
https://github.com/slackhq/nebula.git
synced 2026-01-21 12:03:17 -08:00
12 lines
205 B
Go
12 lines
205 B
Go
package virtqueue
|
|
|
|
import (
|
|
"testing"
|
|
"unsafe"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestUsedElement_Size(t *testing.T) {
|
|
assert.EqualValues(t, usedElementSize, unsafe.Sizeof(UsedElement{}))
|
|
}
|