mirror of
https://github.com/slackhq/nebula.git
synced 2025-11-22 08:24:25 +01:00
13 lines
202 B
Go
13 lines
202 B
Go
package virtqueue
|
|
|
|
import (
|
|
"testing"
|
|
"unsafe"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestDescriptor_Size(t *testing.T) {
|
|
assert.EqualValues(t, descriptorSize, unsafe.Sizeof(Descriptor{}))
|
|
}
|